Skip to content

Commit

Permalink
chore(edit-content): fix error #29875
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Oct 24, 2024
1 parent 5640398 commit 0b7f934
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {
MonacoEditorConstructionOptions,
MonacoEditorModule
} from '@materia-ui/ngx-monaco-editor';
import { MonacoEditorConstructionOptions, MonacoEditorModule } from '@materia-ui/ngx-monaco-editor';

import {
ChangeDetectionStrategy,
Expand Down Expand Up @@ -220,7 +217,7 @@ export class DotFormFileEditorComponent implements OnInit {
*/
#disableEditor() {
if (!this.#editorRef) {
return
return;
}

this.form.disable();
Expand All @@ -237,7 +234,7 @@ export class DotFormFileEditorComponent implements OnInit {
*/
#enableEditor() {
if (!this.#editorRef) {
return
return;
}

this.form.enable();
Expand Down

0 comments on commit 0b7f934

Please sign in to comment.