Browse Source

Fix tenant isolated checkbox fields

pull/2677/head
Igor Kulikov 6 years ago
parent
commit
77c6babff6
  1. 14
      ui-ngx/src/app/modules/home/pages/tenant/tenant.component.ts

14
ui-ngx/src/app/modules/home/pages/tenant/tenant.component.ts

@ -69,6 +69,20 @@ export class TenantComponent extends ContactBasedComponent<Tenant> {
this.entityForm.patchValue({additionalInfo: {description: entity.additionalInfo ? entity.additionalInfo.description : ''}});
}
updateFormState() {
if (this.entityForm) {
if (this.isEditValue) {
this.entityForm.enable({emitEvent: false});
if (!this.isAdd) {
this.entityForm.get('isolatedTbCore').disable({emitEvent: false});
this.entityForm.get('isolatedTbRuleEngine').disable({emitEvent: false});
}
} else {
this.entityForm.disable({emitEvent: false});
}
}
}
onTenantIdCopied(event) {
this.store.dispatch(new ActionNotificationShow(
{

Loading…
Cancel
Save