From 0a7d7b7cab9d605484bc881e23cf0aef028a809d Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 19 Jul 2024 09:49:40 +0200 Subject: [PATCH] feat: prevent the new `loaded` event from bubbling all the way to the top --- .../packages/templating/code-editor/code-editor-loaded.event.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor-loaded.event.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor-loaded.event.ts index 01b07ef01b..9be89b5727 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor-loaded.event.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/code-editor/code-editor-loaded.event.ts @@ -2,6 +2,6 @@ export class UmbCodeEditorLoadedEvent extends Event { public static readonly TYPE = 'loaded'; public constructor() { - super(UmbCodeEditorLoadedEvent.TYPE, { bubbles: true, composed: true, cancelable: false }); + super(UmbCodeEditorLoadedEvent.TYPE, { bubbles: true, cancelable: false }); } }