From a0c48c895ca0bd04f3949b8e02c07319d606e31b Mon Sep 17 00:00:00 2001 From: leekelleher Date: Wed, 7 Aug 2024 01:28:46 +0100 Subject: [PATCH] Removing property-actions for textbox property-editor The initial property-actions (Clear and Copy) were a proof-of-concept and should not have been released with 14.0. --- .../src/packages/core/property-action/manifests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-action/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-action/manifests.ts index 4421213b0e..37cf9d3f66 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-action/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-action/manifests.ts @@ -12,7 +12,7 @@ export const propertyActionManifests: Array = [ alias: 'Umb.PropertyAction.Copy', name: 'Copy Property Action', api: () => import('./common/copy/property-action-copy.controller.js'), - forPropertyEditorUis: ['Umb.PropertyEditorUi.TextBox'], + forPropertyEditorUis: [], meta: { icon: 'icon-paste-in', label: 'Copy', @@ -24,7 +24,7 @@ export const propertyActionManifests: Array = [ alias: 'Umb.PropertyAction.Clear', name: 'Clear Property Action', api: () => import('./common/clear/property-action-clear.controller.js'), - forPropertyEditorUis: ['Umb.PropertyEditorUi.TextBox'], + forPropertyEditorUis: [], meta: { icon: 'icon-trash', label: 'Clear',