From 68733163804ed2efed8223a04ab0a7a0714a8b33 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Thu, 7 Jul 2022 17:17:52 +0100 Subject: Support for concat TOSCA function Adds support for the concat TOSCA function in an instance property. Refactors the TOSCA function structure so it can be more generic to support other functions in the future. Change-Id: I338e4138d26afe21779da57c4eeb3f2d486c20a9 Issue-ID: SDC-4095 Signed-off-by: andre.schmid --- .../component-property-form/property-form-view-model.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'catalog-ui/src/app/view-models') diff --git a/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view-model.ts b/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view-model.ts index 13460f50bf..008858d43d 100644 --- a/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view-model.ts +++ b/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view-model.ts @@ -397,7 +397,7 @@ export class PropertyFormViewModel { this.$scope.$watch("forms.editForm.$invalid", (newVal) => { if (this.$scope.editPropertyModel.hasGetFunctionValue) { - this.$scope.footerButtons[0].disabled = newVal || !this.$scope.editPropertyModel.property.toscaGetFunction; + this.$scope.footerButtons[0].disabled = newVal || !this.$scope.editPropertyModel.property.toscaFunction; } else { this.$scope.footerButtons[0].disabled = newVal; } @@ -405,7 +405,7 @@ export class PropertyFormViewModel { this.$scope.$watch("forms.editForm.$valid", (newVal) => { if (this.$scope.editPropertyModel.hasGetFunctionValue) { - this.$scope.footerButtons[0].disabled = !newVal || !this.$scope.editPropertyModel.property.toscaGetFunction; + this.$scope.footerButtons[0].disabled = !newVal || !this.$scope.editPropertyModel.property.toscaFunction; } else { this.$scope.footerButtons[0].disabled = !newVal; } @@ -448,13 +448,13 @@ export class PropertyFormViewModel { if (this.$scope.editPropertyModel.hasGetFunctionValue) { this.$scope.editPropertyModel.isGetFunctionValid = undefined; } else { - this.$scope.editPropertyModel.property.toscaGetFunction = undefined; + this.$scope.editPropertyModel.property.toscaFunction = undefined; this.$scope.editPropertyModel.isGetFunctionValid = true; } } this.$scope.onGetFunctionValidFunction = (toscaGetFunction: ToscaGetFunction): void => { - this.$scope.editPropertyModel.property.toscaGetFunction = toscaGetFunction; + this.$scope.editPropertyModel.property.toscaFunction = toscaGetFunction; } this.$scope.onGetFunctionValidityChange = (isValid: boolean): void => { -- cgit 1.2.3-korg