- {{(document.correspondent$ | async)?.name}}:
+ {{(document.correspondent$ | async)?.name ?? privateName}}:
{{document.title | documentTitle}}
@@ -41,14 +41,14 @@
-
{{(document.document_type$ | async)?.name}}
+
{{(document.document_type$ | async)?.name ?? privateName}}
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
index 62f44851e..3dd64818d 100644
--- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
+++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.ts
@@ -76,6 +76,10 @@ export class DocumentCardSmallComponent extends ComponentWithPermissions {
return this.documentService.getPreviewUrl(this.document.id)
}
+ get privateName() {
+ return $localize`Private`
+ }
+
getTagsLimited$() {
const limit = this.document.notes.length > 0 ? 6 : 7
return this.document.tags$.pipe(