Skip to content

Commit 246ec78

Browse files
committed
Fix empty path after saving aspect model without aspect
1 parent 19aee83 commit 246ec78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/libs/editor/src/lib/editor-toolbar/services/file-handling.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export class FileHandlingService {
212212

213213
this.sidebarService.sammElements.open();
214214

215-
newRdfModel.absoluteAspectModelFileName = `${emptyNamespace}:${fileName}`;
215+
newRdfModel.absoluteAspectModelFileName = `${emptyNamespace}${fileName}`;
216216
this.rdfService.currentRdfModel = newRdfModel;
217217
if (oldFile) {
218218
this.namespaceCacheService.removeFile(oldFile.namespace, oldFile.fileName);

0 commit comments

Comments
 (0)