diff options
author | KrupaNagabhushan <krupa.nagabhushan@est.tech> | 2021-03-04 12:15:35 +0000 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2021-03-12 07:47:17 +0000 |
commit | 1a44b54447c2764f43d2d42f7830b85057ad0065 (patch) | |
tree | bf5c0299f148ad1177dff2e6ed5528483a73857c /catalog-ui/src/app/ng2/pages | |
parent | 57975ddbe96fd6a16986fd9525f3784733ee71c2 (diff) |
Fix declare input button when checked/unchecked properties
Issue-ID: SDC-3502
Signed-off-by: KrupaNagabhushan <krupa.nagabhushan@est.tech>
Change-Id: I24424ddc4d7027dcef3c09ee24d3ec82dbdcc5d9
Diffstat (limited to 'catalog-ui/src/app/ng2/pages')
-rw-r--r-- | catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts index 74e2680b80..8cdc761ed4 100644 --- a/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts +++ b/catalog-ui/src/app/ng2/pages/properties-assignment/properties-assignment.page.component.ts @@ -841,8 +841,6 @@ export class PropertiesAssignmentComponent { handleReverseItem = (changedItem) => { changedItem = <PropertyFEModel>changedItem; this.propertiesUtils.resetPropertyValue(changedItem, changedItem.value); - this.checkedPropertiesCount = 0; - this.checkedChildPropertiesCount = 0; }; } else if (this.isInputsTabSelected) { handleReverseItem = (changedItem) => { @@ -879,10 +877,6 @@ export class PropertiesAssignmentComponent { title: 'Saved' }); if(onSuccessFunction) onSuccessFunction(); - if(this.isPropertiesTabSelected){ - this.checkedPropertiesCount = 0; - this.checkedChildPropertiesCount = 0; - } }, () => { this.Notification.error({ |