diff options
author | andre.schmid <andre.schmid@est.tech> | 2022-05-12 17:37:43 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2022-05-17 08:23:38 +0000 |
commit | 61e8668899051e1df738093d1700564fbc22a428 (patch) | |
tree | 0076471bed9a3fee8e5a565ed63c6027a5c76b30 /catalog-ui/src/app/view-models/forms | |
parent | 69bc5bdb7d464fa38705191f1495fb09474277a8 (diff) |
Support list of map properties in composition
Supports editing list<map<string, string> properties in the
edit properties dialog in the composition screen.
Fixes entry schema of type map not being shown.
Change-Id: Iea1732f51148ae88dedd2242b3b19d19c4548eb4
Issue-ID: SDC-4001
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.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view.html b/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view.html index 7c29d98641..49ff38bb76 100644 --- a/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view.html +++ b/catalog-ui/src/app/view-models/forms/property-forms/component-property-form/property-form-view.html @@ -84,7 +84,7 @@ <div class="w-sdc-form-column" data-ng-if="showSchema()"> <!-- Entry Schema --> <div class="i-sdc-form-item" data-ng-class="{error:(forms.editForm.schemaType.$dirty && forms.editForm.schemaType.$invalid)}"> - <label class="i-sdc-form-label required">Entry Schema</label> + <label class="i-sdc-form-label required">{{'PROPERTY_ENTRY_SCHEMA' | translate}}</label> <select class="i-sdc-form-select" data-required data-tests-id="schema-type" @@ -92,8 +92,8 @@ name="schemaType" data-ng-change="onSchemaTypeChange()" data-ng-model="editPropertyModel.property.schema.property.type"> - <option value="">Choose Schema Type</option> - <option data-ng-repeat="type in editPropertyModel.simpleTypes" + <option value="">{{'PROPERTY_ENTRY_SCHEMA_CHOOSE_OPTION' | translate}}</option> + <option data-ng-repeat="type in editPropertyModel.types" value="{{type}}">{{type}}</option> <option data-ng-repeat="type in nonPrimitiveTypes" value="{{type}}">{{type.replace("org.openecomp.datatypes.heat.","")}}</option> |