Merge pull request #6549 from ArtemDzhereleiko/AD/rulechainPage/add-seter-isDirty

[3.4] UI: Add seter isDirty for rulechain page
This commit is contained in:
Igor Kulikov 2022-06-09 16:38:05 +03:00 committed by GitHub
commit 4724b8db1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,6 +89,10 @@ export class RuleChainPageComponent extends PageComponent
return this.isDirtyValue || this.isImport; return this.isDirtyValue || this.isImport;
} }
set isDirty(value: boolean) {
this.isDirtyValue = value;
}
@HostBinding('style.width') width = '100%'; @HostBinding('style.width') width = '100%';
@HostBinding('style.height') height = '100%'; @HostBinding('style.height') height = '100%';