Update src/packages/documents/documents/workspace/views/edit/document-workspace-view-edit.element.ts

This commit is contained in:
Jacob Overgaard
2023-08-11 14:27:49 +02:00
parent 25cffb57c8
commit 753a6ae372

View File

@@ -133,7 +133,7 @@ export class UmbDocumentWorkspaceViewEditElement
(tab) => tab.name,
(tab) => {
const path = this._routerPath + '/tab/' + encodeFolderName(tab.name || '');
return html`<uui-tab label=${tab.name ?? 'unnanmed'} .active=${path === this._activePath} href=${path}
return html`<uui-tab label=${tab.name ?? 'Unnamed'} .active=${path === this._activePath} href=${path}
>${tab.name}</uui-tab
>`;
}