Skip to content

Commit

Permalink
Fix basyx attachements in PCF
Browse files Browse the repository at this point in the history
  • Loading branch information
aorzelskiGH committed Jun 13, 2024
1 parent b98b2a4 commit 5613f75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AasxServerBlazor/Pages/Pcf2.razor
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@
if (f.Value != "")
{
string[] split = f.Value.Split(new Char[] { '/' });
if (split.Length == 2 || (split.Length > 1 && split[1].ToLower() == "aasx"))
if (split.Length == 2 || (split.Length > 1 && (split[1].ToLower() == "aasx" || split[1].ToLower() == "tmp")))
{
split = f.Value.Split(new Char[] { '.' });
switch (split.Last().ToLower())
Expand Down
2 changes: 1 addition & 1 deletion src/AasxServerBlazor/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"AasxServerBlazor": {
"commandName": "Project",
"commandLineArgs": "--no-security --secret-string-api 1234 --aasx-in-memory 1000 --data-path \"\\\\wsl.localhost\\Ubuntu\\home\\oze\\plugfest\\aasxs-repository\" --edit --external-blazor http://localhost:5001",
"commandLineArgs": "--no-security --secret-string-api 1234 --aasx-in-memory 1000 --data-path \"\\\\wsl.localhost\\Ubuntu\\home\\oze\\plugfest\\aasxs-view\" --edit --external-blazor http://localhost:5001",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
Expand Down

0 comments on commit 5613f75

Please sign in to comment.