diff options
author | JvD_Ericsson <jeff.van.dam@est.tech> | 2023-09-21 11:41:34 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2023-09-23 23:47:49 +0000 |
commit | da6b4a245482f4eebade8f487fc9d63f456469ab (patch) | |
tree | 92d21faa7df749812fc9e358a1e087f3e802f6c2 /catalog-ui/src/app/ng2/components/logic/attributes-table | |
parent | 84d1ddc355acf519c165551d759bc00af12084c9 (diff) |
Fix bugs in attribute outputs page
* Attributes being added to the template for each output
declared if the attribute is a property and has a value
* Unable to set a default value on a property from Output page
* Fix issues with the save button
* infinite save pop up when trying to leave the page with
changes and clicking save
* parse error in the console that would make the save button
remain enabled after save was succesful
* output values not being removed from attribute after output
is deleted
* nested attribute values not being updated
Issue-ID: SDC-4632
Signed-off-by: JvD_Ericsson <jeff.van.dam@est.tech>
Change-Id: I08abd6cd96963b09be7941c3a91559e241ace24f
Diffstat (limited to 'catalog-ui/src/app/ng2/components/logic/attributes-table')
2 files changed, 2 insertions, 2 deletions
diff --git a/catalog-ui/src/app/ng2/components/logic/attributes-table/attributes-table.component.html b/catalog-ui/src/app/ng2/components/logic/attributes-table/attributes-table.component.html index e9360421a6..a6ce2884ca 100644 --- a/catalog-ui/src/app/ng2/components/logic/attributes-table/attributes-table.component.html +++ b/catalog-ui/src/app/ng2/components/logic/attributes-table/attributes-table.component.html @@ -84,7 +84,7 @@ [attributeNameSearchText]="attributeNameSearchText" [readonly]="readonly" (attributeChanged)="onAttributeChanged(property)" - (expandChild)="property.updateExpandedChildPropertyId($event)" + (expandChild)="property.updateExpandedChildAttributeId($event)" (clickOnAttributeRow)="onClickAttributeInnerRow($event, instanceId)" (checkAttribute)="attributeChecked(property, $event)" > diff --git a/catalog-ui/src/app/ng2/components/logic/attributes-table/dynamic-attribute/dynamic-attribute.component.html b/catalog-ui/src/app/ng2/components/logic/attributes-table/dynamic-attribute/dynamic-attribute.component.html index 7f271af4e1..f5de4aac2c 100644 --- a/catalog-ui/src/app/ng2/components/logic/attributes-table/dynamic-attribute/dynamic-attribute.component.html +++ b/catalog-ui/src/app/ng2/components/logic/attributes-table/dynamic-attribute/dynamic-attribute.component.html @@ -89,7 +89,7 @@ [attributeNameSearchText]="attributeNameSearchText" [readonly]="readonly" [hasChildren]="getHasChildren(prop)" - (propertyChanged)="childValueChanged(prop)" + (attributeChanged)="childValueChanged(prop)" (mapKeyChanged)="updateChildKeyInParent(prop, $event)" (expandChild)="expandChildById($event)" (deleteItem)="deleteListOrMapItem($event)" |