Skip to content

Commit 8acb5a1

Browse files
michelu89github-actions
andauthored
Hotfix/fix empty path (#262)
* Fixing creation of Aspect Models without aspect with empty name --------- Co-authored-by: github-actions <[email protected]>
1 parent acb2ace commit 8acb5a1

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)