diff --git a/frontend/src/app/components/result/result.component.html b/frontend/src/app/components/result/result.component.html
index fef4628..775f78b 100644
--- a/frontend/src/app/components/result/result.component.html
+++ b/frontend/src/app/components/result/result.component.html
@@ -14,7 +14,7 @@
|
- {{PROPERTY_VIS_DEF[score.type].icon}}
+ {{PROPERTY_VIS_DEF[score.type] ? PROPERTY_VIS_DEF[score.type].icon : 'bar_chart'}}
{{score.type|translate}}:
|
@@ -25,7 +25,12 @@
- {{PROPERTY_VIS_DEF[score.type].unit}}
+ {{PROPERTY_VIS_DEF[score.type] ? PROPERTY_VIS_DEF[score.type].unit : ''}}
+
+ |
+
+
+ ({{score.score}})
|