Browse Source

Fix disabled.

pull/853/head
Sebastian 4 years ago
parent
commit
95b3919771
  1. 2
      frontend/src/app/features/content/shared/forms/iframe-editor.component.ts

2
frontend/src/app/features/content/shared/forms/iframe-editor.component.ts

@ -227,7 +227,7 @@ export class IFrameEditorComponent extends StatefulComponent<State> implements O
public updatedisabled(isDisabled: boolean) {
if (isDisabled !== this.isDisabled) {
this.isDisabled === isDisabled;
this.isDisabled = isDisabled;
this.sendDisabled();
}

Loading…
Cancel
Save