From: JvD_Ericsson Date: Fri, 20 Jan 2023 10:26:17 +0000 (+0000) Subject: Fix constraint not added when creating property X-Git-Tag: 1.12.1~16 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F132979%2F2;p=sdc.git Fix constraint not added when creating property Issue-ID: SDC-4342 Signed-off-by: JvD_Ericsson Change-Id: I4bc4751993b47e85a8acf31c94febee92996232a --- diff --git a/catalog-ui/src/app/models/properties.ts b/catalog-ui/src/app/models/properties.ts index 91245967b0..65158de23d 100644 --- a/catalog-ui/src/app/models/properties.ts +++ b/catalog-ui/src/app/models/properties.ts @@ -129,6 +129,7 @@ export class PropertyModel extends PropertyBEModel implements IPropertyModel { "defaultValue": this.defaultValue != "" && this.defaultValue != "[]" && this.defaultValue != "{}" ? this.defaultValue : null, "description": this.description, "constraints": this.constraints, + "propertyConstraints": this.propertyConstraints, "isPassword": this.password || false, "schema": this.schema, "name": this.name