This repository was archived by the owner on Nov 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
src/packages/language/workspace/language Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1+ export const UMB_LANGUAGE_WORKSPACE_ALIAS = 'Umb.Workspace.Language' ;
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 './constants.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 1+ import { UMB_LANGUAGE_WORKSPACE_ALIAS } from './constants.js' ;
12import { UmbSubmitWorkspaceAction } from '@umbraco-cms/backoffice/workspace' ;
23import type {
34 ManifestWorkspaces ,
@@ -9,7 +10,7 @@ import type {
910const workspace : ManifestWorkspaces = {
1011 type : 'workspace' ,
1112 kind : 'routable' ,
12- alias : 'Umb.Workspace.Language' ,
13+ alias : UMB_LANGUAGE_WORKSPACE_ALIAS ,
1314 name : 'Language Workspace' ,
1415 api : ( ) => import ( './language-workspace.context.js' ) ,
1516 meta : {
You can’t perform that action at this time.
0 commit comments