From 9a4d410f662f07b2ee082c083ba45d604c06d0ee Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Fri, 4 Dec 2020 01:25:52 +0100 Subject: [PATCH] use the observables everywhere in the application. --- .../saved-view-widget/saved-view-widget.component.html | 2 +- .../document-card-large.component.html | 8 ++++---- .../document-card-small.component.html | 6 +++--- .../document-list/document-list.component.html | 10 +++++----- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html index a444474ea..e63ecc47b 100644 --- a/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html +++ b/src-ui/src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html @@ -13,7 +13,7 @@ {{doc.created | date}} - {{doc.title}} + {{doc.title}} diff --git a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html index cf821b643..bfc59b526 100644 --- a/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html +++ b/src-ui/src/app/components/document-list/document-card-large/document-card-large.component.html @@ -8,12 +8,12 @@
- - {{document.correspondent_object.name}} - {{document.correspondent_object.name}}: + + {{(document.correspondent$ | async)?.name}} + {{(document.correspondent$ | async)?.name}}: {{document.title}} - +
#{{document.archive_serial_number}}
diff --git a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html index 4ab48d5e6..71a7fb01a 100644 --- a/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html +++ b/src-ui/src/app/components/document-list/document-card-small/document-card-small.component.html @@ -1,15 +1,15 @@
-
+

- - {{document.correspondent_object.name}}: + + {{(document.correspondent$ | async)?.name}}: {{document.title}}

diff --git a/src-ui/src/app/components/document-list/document-list.component.html b/src-ui/src/app/components/document-list/document-list.component.html index af7a049c7..cebe7c544 100644 --- a/src-ui/src/app/components/document-list/document-list.component.html +++ b/src-ui/src/app/components/document-list/document-list.component.html @@ -100,17 +100,17 @@ {{d.archive_serial_number}} - - {{d.correspondent_object.name}} + + {{(d.correspondent$ | async)?.name}} {{d.title}} - + - - {{d.document_type_object.name}} + + {{(d.document_type$ | async)?.name}}