diff --git a/frontend/src/app/components/ui-components/table-display-fields/point/point.component.html b/frontend/src/app/components/ui-components/table-display-fields/point/point.component.html index 2e30aeeca..394c892b9 100644 --- a/frontend/src/app/components/ui-components/table-display-fields/point/point.component.html +++ b/frontend/src/app/components/ui-components/table-display-fields/point/point.component.html @@ -1,11 +1,13 @@ -
- {{ formattedPoint }} - -
+@if (formattedPoint) { +
+ {{ formattedPoint }} + +
+} diff --git a/frontend/src/app/components/ui-components/table-display-fields/url/url.component.html b/frontend/src/app/components/ui-components/table-display-fields/url/url.component.html index e10a7f1bb..8f2d0cc36 100644 --- a/frontend/src/app/components/ui-components/table-display-fields/url/url.component.html +++ b/frontend/src/app/components/ui-components/table-display-fields/url/url.component.html @@ -1,13 +1,15 @@
- - link - {{value() || '—'}} - - {{value() || '—'}} + @if (isValidUrl) { + + link + {{value() || '—'}} + + } @else { + {{value() || '—'}} + }