Skip to content

Commit

Permalink
"Submodel not found" as idShort
Browse files Browse the repository at this point in the history
  • Loading branch information
seicke committed Oct 30, 2024
1 parent 6b4213b commit 0d55468
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aas-web-ui/src/components/AASTreeview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
} else {
let submodel = {
id: submodelId,
idShort: submodelId.split('/').pop(),
idShort: 'Submodel not found',
modelType: 'Submodel',
semanticId: null,
description: [],
Expand All @@ -275,7 +275,7 @@
} else {
let submodel = {
id: submodelId,
idShort: submodelId.split('/').pop(),
idShort: 'Submodel not found',
modelType: 'Submodel',
semanticId: null,
description: [],
Expand Down
4 changes: 2 additions & 2 deletions aas-web-ui/src/components/SubmodelList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@
} else {
let submodel = {
id: submodelId,
idShort: submodelId.split('/').pop(),
idShort: 'Submodel not found',
modelType: 'Submodel',
semanticId: null,
description: [],
Expand All @@ -283,7 +283,7 @@
} else {
let submodel = {
id: submodelId,
idShort: submodelId.split('/').pop(),
idShort: 'Submodel not found',
modelType: 'Submodel',
semanticId: null,
description: [],
Expand Down

0 comments on commit 0d55468

Please sign in to comment.