Browse Source

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

[3.4] UI: Add seter isDirty for rulechain page
pull/6682/head
Igor Kulikov 4 years ago
committed by GitHub
parent
commit
4724b8db1f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      ui-ngx/src/app/modules/home/pages/rulechain/rulechain-page.component.ts

4
ui-ngx/src/app/modules/home/pages/rulechain/rulechain-page.component.ts

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

Loading…
Cancel
Save