diff --git a/src/Umbraco.Web.UI.Client/src/packages/tiptap/components/input-tiptap/input-tiptap.element.ts b/src/Umbraco.Web.UI.Client/src/packages/tiptap/components/input-tiptap/input-tiptap.element.ts index addfe51b6388..35fca74cac4d 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tiptap/components/input-tiptap/input-tiptap.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tiptap/components/input-tiptap/input-tiptap.element.ts @@ -223,7 +223,10 @@ export class UmbInputTiptapElement extends UmbFormControlMixin { console.error('contentError', [error.message, error.cause]); }, - onUpdate: ({ editor }) => { + onUpdate: ({ editor, transaction }) => { + // Tiptap also fires `update` for no-op transactions (e.g. setEditable), + // which would otherwise dirty the workspace with a phantom change. + if (!transaction.docChanged) return; this.#value = editor.getHTML(); this._runValidators(); this.dispatchEvent(new UmbChangeEvent());