From 98513d2be1f1c5f0fba48a972dea297b784aec68 Mon Sep 17 00:00:00 2001 From: JvD_Ericsson Date: Mon, 9 Oct 2023 11:40:45 +0100 Subject: [PATCH] Fix - Declare Output button disabled after saving a default value Issue-ID: SDC-4649 Signed-off-by: JvD_Ericsson Change-Id: Ie58fcafb4d9fbeaea155947dc88b677dc37fcd87 --- .../ng2/pages/attributes-outputs/attributes-outputs.page.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/catalog-ui/src/app/ng2/pages/attributes-outputs/attributes-outputs.page.component.ts b/catalog-ui/src/app/ng2/pages/attributes-outputs/attributes-outputs.page.component.ts index 6dc8abfa4d..c94a345a2a 100644 --- a/catalog-ui/src/app/ng2/pages/attributes-outputs/attributes-outputs.page.component.ts +++ b/catalog-ui/src/app/ng2/pages/attributes-outputs/attributes-outputs.page.component.ts @@ -655,6 +655,7 @@ export class AttributesOutputsComponent { if (this.isAttributesTabSelected) { this.checkedAttributesCount = 0; } + this.instanceFeAttributesMap[this.selectedInstanceData.uniqueId].forEach(prop => prop.isSelected = false); this.hasChangedData = false; this.isValidChangedData = false; }, -- 2.16.6