From b43eb22f91ffdc1e2ba5d82b3dc1a2c4250d06e0 Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Wed, 18 May 2022 22:09:25 +0100 Subject: Support of get_property in property assignment Refactors the current way store a get_input function allowing to support different get functions (get_property in this case). The information stored allows recreating and correctly validating the get function. Fix get function schema validation, the schema was being ignored. Improve validation error status and messages. Improve tosca get function dialog. Change-Id: I5de5f96dfba3c7a0fbb458885af5528bea7835aa Issue-ID: SDC-4014 Signed-off-by: andre.schmid --- catalog-ui/src/app/services/data-types-service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'catalog-ui/src/app/services') diff --git a/catalog-ui/src/app/services/data-types-service.ts b/catalog-ui/src/app/services/data-types-service.ts index 1a0fc47aae..ad8dc59b8c 100644 --- a/catalog-ui/src/app/services/data-types-service.ts +++ b/catalog-ui/src/app/services/data-types-service.ts @@ -71,13 +71,13 @@ export class DataTypesService implements IDataTypesService { selectedInstance:ComponentInstance; selectedComponentInputs:Array; - public loadDataTypesCache = (modelName: string): void => { + public loadDataTypesCache = async (modelName: string): Promise => { let model; if (modelName) { model = {'model': modelName} } - this.$http.get(this.baseUrl+"dataTypes", {params: model}) - .then((response:any) => { + await this.$http.get(this.baseUrl + "dataTypes", {params: model}) + .then((response: any) => { this.dataTypes = response.data; delete this.dataTypes['tosca.datatypes.Root']; }); -- cgit 1.2.3-korg