From d4bd6729daee8f149058a3a2de4f850fd195cddf Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Mon, 4 Mar 2024 00:54:01 +0100 Subject: [PATCH] Update manifests.ts --- .../src/packages/dictionary/entity-action/manifests.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/manifests.ts index 87d50250d7..317f2dd222 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/manifests.ts @@ -23,8 +23,7 @@ const entityActions: Array = [ name: 'Move Dictionary Entity Action', forEntityTypes: [UMB_DICTIONARY_ENTITY_TYPE], meta: { - icon: 'icon-enter', - label: 'Move', + moveRepositoryAlias: UMB_DICTIONARY_ITEM_REPOSITORY_ALIAS, }, }, { @@ -71,19 +70,19 @@ const modals: Array = [ type: 'modal', alias: 'Umb.Modal.Dictionary.Create', name: 'Create Dictionary Modal', - js: () => import('./create/create-dictionary-modal.element.js'), + element: () => import('./create/create-dictionary-modal.element.js'), }, { type: 'modal', alias: 'Umb.Modal.Dictionary.Export', name: 'Export Dictionary Modal', - js: () => import('./export/export-dictionary-modal.element.js'), + element: () => import('./export/export-dictionary-modal.element.js'), }, { type: 'modal', alias: 'Umb.Modal.Dictionary.Import', name: 'Import Dictionary Modal', - js: () => import('./import/import-dictionary-modal.element.js'), + element: () => import('./import/import-dictionary-modal.element.js'), }, ];