- @for (docId of value; track docId) {
-
- {{ getDocumentTitle(docId) }}
-
- }
+ @if (value?.toString().length > 0) {
+
+
+ {{field.name}}
+
+ @switch (field.data_type) {
+ @case (CustomFieldDataType.Monetary) {
+
{{value | currency: currency}}
+ }
+ @case (CustomFieldDataType.Date) {
+
{{value | customDate}}
+ }
+ @case (CustomFieldDataType.Url) {
+
{{value}}
+ }
+ @case (CustomFieldDataType.DocumentLink) {
+
+ }
+ @default {
+
{{value}}
+ }
}
- @default {
-
{{value}}
- }
+ } @else if (showNameIfEmpty) {
+
{{field.name}}
}
}
diff --git a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts
index f53c7c8fd..0477b32c3 100644
--- a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts
+++ b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.ts
@@ -41,6 +41,9 @@ export class CustomFieldDisplayComponent implements OnInit, OnDestroy {
this.fieldId = parseInt(key.replace(DisplayField.CUSTOM_FIELD, ''), 10)
}
+ @Input()
+ showNameIfEmpty: boolean = false
+
value: any
currency: string
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 3981ea7e5..e1a82a7ea 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
@@ -132,7 +132,7 @@
}
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 a3e6b2847..5d565ddf2 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
@@ -110,7 +110,7 @@
@if (displayFields.includes(DisplayField.CUSTOM_FIELD + field.field)) {
}
}