Skip to content

Commit

Permalink
Fix disabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Feb 24, 2022
1 parent be07cd9 commit 95b3919
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 95b3919

Please sign in to comment.