diff --git a/core-web/libs/edit-content/src/lib/fields/dot-edit-content-file-field/components/dot-form-file-editor/dot-form-file-editor.component.ts b/core-web/libs/edit-content/src/lib/fields/dot-edit-content-file-field/components/dot-form-file-editor/dot-form-file-editor.component.ts index f30aaaff27b3..edc56360c0ed 100644 --- a/core-web/libs/edit-content/src/lib/fields/dot-edit-content-file-field/components/dot-form-file-editor/dot-form-file-editor.component.ts +++ b/core-web/libs/edit-content/src/lib/fields/dot-edit-content-file-field/components/dot-form-file-editor/dot-form-file-editor.component.ts @@ -1,7 +1,4 @@ -import { - MonacoEditorConstructionOptions, - MonacoEditorModule -} from '@materia-ui/ngx-monaco-editor'; +import { MonacoEditorConstructionOptions, MonacoEditorModule } from '@materia-ui/ngx-monaco-editor'; import { ChangeDetectionStrategy, @@ -220,7 +217,7 @@ export class DotFormFileEditorComponent implements OnInit { */ #disableEditor() { if (!this.#editorRef) { - return + return; } this.form.disable(); @@ -237,7 +234,7 @@ export class DotFormFileEditorComponent implements OnInit { */ #enableEditor() { if (!this.#editorRef) { - return + return; } this.form.enable();