diff options
author | andre.schmid <andre.schmid@est.tech> | 2022-07-07 17:17:52 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-07-18 14:22:12 +0000 |
commit | 68733163804ed2efed8223a04ab0a7a0714a8b33 (patch) | |
tree | 013f4d25042aa776120971a612a52d64db52f7a7 /catalog-ui/src/app/view-models/forms | |
parent | 4e4ec8e9c21acf7f9210aaebf8f13a60542737fc (diff) |
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 <andre.schmid@est.tech>
Diffstat (limited to 'catalog-ui/src/app/view-models/forms')
-rw-r--r-- | catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view-model.ts | 8 |
1 files changed, 4 insertions, 4 deletions
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 => { |