From 95b3919771d8ab48363862ca16a256588366e65f Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 24 Feb 2022 14:41:22 +0100 Subject: [PATCH] Fix disabled. --- .../features/content/shared/forms/iframe-editor.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/features/content/shared/forms/iframe-editor.component.ts b/frontend/src/app/features/content/shared/forms/iframe-editor.component.ts index 32f0a408d..c50381df0 100644 --- a/frontend/src/app/features/content/shared/forms/iframe-editor.component.ts +++ b/frontend/src/app/features/content/shared/forms/iframe-editor.component.ts @@ -227,7 +227,7 @@ export class IFrameEditorComponent extends StatefulComponent implements O public updatedisabled(isDisabled: boolean) { if (isDisabled !== this.isDisabled) { - this.isDisabled === isDisabled; + this.isDisabled = isDisabled; this.sendDisabled(); }