This repository was archived by the owner on Nov 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/packages/language/workspace/language Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11import { UmbLanguageDetailRepository } from '../../repository/index.js' ;
22import type { UmbLanguageDetailModel } from '../../types.js' ;
33import { UmbLanguageWorkspaceEditorElement } from './language-workspace-editor.element.js' ;
4+ import { UMB_LANGUAGE_WORKSPACE_ALIAS } from './manifests.js' ;
45import {
56 type UmbSubmittableWorkspaceContext ,
67 UmbSubmittableWorkspaceContextBase ,
@@ -27,7 +28,7 @@ export class UmbLanguageWorkspaceContext
2728 readonly validationErrors = this . #validationErrors. asObservable ( ) ;
2829
2930 constructor ( host : UmbControllerHost ) {
30- super ( host , 'Umb.Workspace.Language' ) ;
31+ super ( host , UMB_LANGUAGE_WORKSPACE_ALIAS ) ;
3132
3233 this . routes . setRoutes ( [
3334 {
Original file line number Diff line number Diff line change @@ -6,10 +6,12 @@ import type {
66 ManifestTypes ,
77} from '@umbraco-cms/backoffice/extension-registry' ;
88
9+ export const UMB_LANGUAGE_WORKSPACE_ALIAS = 'Umb.Workspace.Language' ;
10+
911const workspace : ManifestWorkspaces = {
1012 type : 'workspace' ,
1113 kind : 'routable' ,
12- alias : 'Umb.Workspace.Language' ,
14+ alias : UMB_LANGUAGE_WORKSPACE_ALIAS ,
1315 name : 'Language Workspace' ,
1416 api : ( ) => import ( './language-workspace.context.js' ) ,
1517 meta : {
You can’t perform that action at this time.
0 commit comments