aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/utils/filter-constraint-helper.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/utils/filter-constraint-helper.ts')
-rw-r--r--catalog-ui/src/app/utils/filter-constraint-helper.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/catalog-ui/src/app/utils/filter-constraint-helper.ts b/catalog-ui/src/app/utils/filter-constraint-helper.ts
index 6504a35acd..4ea7532969 100644
--- a/catalog-ui/src/app/utils/filter-constraint-helper.ts
+++ b/catalog-ui/src/app/utils/filter-constraint-helper.ts
@@ -29,7 +29,7 @@ export class FilterConstraintHelper {
if (ToscaFunctionHelper.isValueToscaFunction(constraint.value)) {
const toscaFunction = ToscaFunctionHelper.convertObjectToToscaFunction(constraint.value);
if (toscaFunction) {
- value = toscaFunction.value === undefined || toscaFunction.value == null ? toscaFunction.buildValueString() : toscaFunction.value
+ value = toscaFunction.value === undefined || toscaFunction.value == null ? toscaFunction.buildValueString() : toscaFunction.value
} else {
value = JSON.stringify(constraint.value, null, 4);
}