diff --git a/libs/ui/src/lib/value/value.component.html b/libs/ui/src/lib/value/value.component.html
index 0ead7497e..e252ef8a2 100644
--- a/libs/ui/src/lib/value/value.component.html
+++ b/libs/ui/src/lib/value/value.component.html
@@ -13,42 +13,45 @@
0" class="mr-1 text-success">+
-
-
- @if (value === null) {
- *****%
- } @else {
- {{ formattedValue }}%
- }
-
-
- @if (value === null) {
- *****
- } @else {
- {{ formattedValue }}
- }
-
-
- {{ unit }}
-
-
- {{ unit }}
-
+ @if (isPercent) {
+
+ @if (value === null) {
+ *****%
+ } @else {
+ {{ formattedValue }}%
+ }
+
+ } @else {
+
+ @if (value === null) {
+ *****
+ } @else {
+ {{ formattedValue }}
+ }
+
+ }
+ @if (unit) {
+
+ {{ unit }}
+
+
+ {{ unit }}
+
+ }
-
+ @if (isString) {
{{ formattedValue }}
-
+ }
-
+ @if (value === undefined) {
+
+ }