From 3da7d9867ab91b58f2a765d24731b45a3f43841c Mon Sep 17 00:00:00 2001 From: JvD_Ericsson Date: Fri, 20 Jan 2023 10:26:17 +0000 Subject: Fix constraint not added when creating property Issue-ID: SDC-4342 Signed-off-by: JvD_Ericsson Change-Id: I4bc4751993b47e85a8acf31c94febee92996232a --- catalog-ui/src/app/models/properties.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'catalog-ui/src/app') 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 -- cgit 1.2.3-korg