From 3eb899b72ccbb903711be67f062f85354f7a3d5f Mon Sep 17 00:00:00 2001 From: JesmoDev <26099018+JesmoDev@users.noreply.github.com> Date: Thu, 19 Sep 2024 10:22:10 +0200 Subject: [PATCH] comment --- .../property-editor-ui-tiptap-toolbar-configuration.element.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/rte/tiptap/property-editors/property-editor-ui-tiptap-toolbar-configuration.element.ts b/src/Umbraco.Web.UI.Client/src/packages/rte/tiptap/property-editors/property-editor-ui-tiptap-toolbar-configuration.element.ts index b273529074..cb9dc749f5 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/rte/tiptap/property-editors/property-editor-ui-tiptap-toolbar-configuration.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/rte/tiptap/property-editors/property-editor-ui-tiptap-toolbar-configuration.element.ts @@ -88,7 +88,7 @@ export class UmbPropertyEditorUiTiptapToolbarConfigurationElement #selectedValues: string[] = []; - #hoveredDropzone: HTMLElement | null = null; + #hoveredDropzone: HTMLElement | null = null; // Will be used to sort extensions in a group in the toolbar protected override async firstUpdated(_changedProperties: PropertyValueMap) { super.firstUpdated(_changedProperties); @@ -178,6 +178,7 @@ export class UmbPropertyEditorUiTiptapToolbarConfigurationElement .find((v) => v instanceof HTMLElement && v.classList.contains('selected-group') && v.hasAttribute('dropzone')); this.#hoveredDropzone = (dropzone as HTMLElement) || null; + console.log('hovered dropzone', this.#hoveredDropzone); }; #onDrop = (event: DragEvent) => {