feat: prevent the new loaded event from bubbling all the way to the top

This commit is contained in:
Jacob Overgaard
2024-07-19 09:49:40 +02:00
parent d99fb449f6
commit 0a7d7b7cab

View File

@@ -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 });
}
}