Skip to content

Commit

Permalink
Fix empty path after saving aspect model without aspect
Browse files Browse the repository at this point in the history
  • Loading branch information
michelu89 committed Nov 6, 2024
1 parent 19aee83 commit 246ec78
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class FileHandlingService {

this.sidebarService.sammElements.open();

newRdfModel.absoluteAspectModelFileName = `${emptyNamespace}:${fileName}`;
newRdfModel.absoluteAspectModelFileName = `${emptyNamespace}${fileName}`;
this.rdfService.currentRdfModel = newRdfModel;
if (oldFile) {
this.namespaceCacheService.removeFile(oldFile.namespace, oldFile.fileName);
Expand Down

0 comments on commit 246ec78

Please sign in to comment.