fix: eslint no named as default

This commit is contained in:
Jacob Overgaard
2024-07-19 14:54:06 +02:00
parent fa6f62d9e7
commit 95394c33a1
2 changed files with 2 additions and 4 deletions

View File

@@ -380,5 +380,3 @@ export class UmbCodeEditorController extends UmbControllerBase {
});
}
}
export default UmbCodeEditorController;

View File

@@ -131,8 +131,8 @@ export class UmbCodeEditorElement extends UmbLitElement implements UmbCodeEditor
const { styles } = await import('@umbraco-cms/backoffice/external/monaco-editor');
this._styles = styles;
const controller = (await import('../code-editor.controller.js')).default;
this.#editor = new controller(this);
const { UmbCodeEditorController } = await import('../code-editor.controller.js');
this.#editor = new UmbCodeEditorController(this);
this._loading = false;
this.dispatchEvent(new UmbCodeEditorLoadedEvent());