diff --git a/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.html b/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.html index 28cb398fb..d2d92bff8 100644 --- a/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.html +++ b/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.html @@ -1,5 +1,10 @@ -
+
{{ fileAttribute.label }}: - !control.get(this.fileAttribute.id).value?.trim().length && !this.fileAttributeValue ? { emptyString: true } : null, + (!control.get(this.fileAttribute.id)?.value?.trim().length && !this.fileAttributeValue) || + control.get(this.fileAttribute.id)?.value === this.fileAttributeValue + ? { emptyString: true } + : null, }); }