Skip to content

Commit

Permalink
Fix PCF view for root
Browse files Browse the repository at this point in the history
  • Loading branch information
aorzelskiGH committed Jan 26, 2024
1 parent acca3fb commit 1eda2af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/AasxServerBlazor/Pages/Pcf2.razor
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
string buttonText = "+";

<div class="node mb-2 flex flex-row space-x-2">
@if (viewCombination && node != null)
@if (viewCombination && node != null && node != AasxTask.root)
{
if (!closedNode.Contains(node.aas.Id))
{
Expand Down
8 changes: 3 additions & 5 deletions src/AasxServerBlazor/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@
},
"AasxServerBlazor": {
"commandName": "Project",
"commandLineArgs": "--no-security --aasx-in-memory 1000 --data-path \"C:\\Development\\eis-view\" --edit --external-blazor http://localhost:5001",
"commandLineArgs": "--no-security --aasx-in-memory 1000 --data-path \"C:\\Development\\PCF View\" --edit --external-blazor http://localhost:5001",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"AASREGISTRY": "https://basyx-aasreg.h2894164.stratoserver.net/api/v3.0",
"IFRAMEPATH": "https://dpp40-2-v2.industrialdigitaltwin.org/dashboard/submodelViewV3.html",
"AASREGISTRY2": "https://pcf-v3-registry.h2894164.stratoserver.net",
"SUBMODELREGISTRY": "https://basyx-subreg.h2894164.stratoserver.net/api/v3.0"
"AASREGISTRY": "https://registry.dpp40-2-v2.industrialdigitaltwin.org",
"IFRAMEPATH": "https://dpp40-2-v2.industrialdigitaltwin.org/dashboard/submodelViewV3.html"
},
"applicationUrl": "http://localhost:5001",
"jsWebView2Debugging": true
Expand Down

0 comments on commit 1eda2af

Please sign in to comment.