diff options
Diffstat (limited to 'catalog-ui/src/app/models/properties-inputs/property-be-model.ts')
-rw-r--r-- | catalog-ui/src/app/models/properties-inputs/property-be-model.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/catalog-ui/src/app/models/properties-inputs/property-be-model.ts b/catalog-ui/src/app/models/properties-inputs/property-be-model.ts index b8cccdd213..b4c1c2fce7 100644 --- a/catalog-ui/src/app/models/properties-inputs/property-be-model.ts +++ b/catalog-ui/src/app/models/properties-inputs/property-be-model.ts @@ -33,7 +33,8 @@ export enum DerivedPropertyType { SIMPLE, LIST, MAP, - COMPLEX + COMPLEX, + RANGE } export class PropertyPolicyDetail { policyId: string; @@ -140,6 +141,9 @@ export class PropertyBEModel { if (this.type === PROPERTY_TYPES.LIST) { return DerivedPropertyType.LIST; } + if (this.type === PROPERTY_TYPES.RANGE) { + return DerivedPropertyType.RANGE; + } if (this.type === PROPERTY_TYPES.MAP) { return DerivedPropertyType.MAP; } |