diff --git a/springwolf-ui/src/app/components/schemas/range/schema-range.component.html b/springwolf-ui/src/app/components/schemas/range/schema-range.component.html
index 61773d918..58dfa4ac8 100644
--- a/springwolf-ui/src/app/components/schemas/range/schema-range.component.html
+++ b/springwolf-ui/src/app/components/schemas/range/schema-range.component.html
@@ -4,56 +4,18 @@
class="range"
*ngIf="schema.minimum !== undefined && schema.maximum === undefined"
>
-
- {{ schema.minimum }}
+ {{ schema.exclusiveMinimum ? ">" : ">=" }} {{ schema.minimum }}
-
- {{ schema.maximum }}
+ {{ schema.exclusiveMaximum ? "<" : "<=" }} {{ schema.maximum }}
{{ schema.exclusiveMinimum ? "(" : "[" }} {{ schema.minimum }} ..
+ {{ schema.maximum }} {{ schema.exclusiveMaximum ? ")" : "]" }}
-
- {{ schema.minimum }} .. {{ schema.maximum }}
-
-
-
-(
-)
-[
-]
-
->
-<
->=
-<=