diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 84fd0fd84..3432faa57 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -497,6 +497,10 @@ src/app/components/admin/config/config.component.html 14,15 + + src/app/components/common/custom-field-display/custom-field-display.component.html + 32 + src/app/components/common/input/drag-drop-select/drag-drop-select.component.html 12 @@ -2977,7 +2981,7 @@ View src/app/components/common/custom-field-display/custom-field-display.component.html - 15 + 21 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html diff --git a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.html b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.html index 61946db02..161f2e1fc 100644 --- a/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.html +++ b/src-ui/src/app/components/common/custom-field-display/custom-field-display.component.html @@ -1,25 +1,34 @@ @if (field) { - @switch (field.data_type) { - @case (CustomFieldDataType.Monetary) { - {{value | currency: currency}} - } - @case (CustomFieldDataType.Date) { - {{value | customDate}} - } - @case (CustomFieldDataType.Url) { - {{value}} - } - @case (CustomFieldDataType.DocumentLink) { -
- @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) { +
+ @for (docId of value; track docId) { + +  {{ getDocumentTitle(docId) }} + + } +
+ } + @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)) {
- +
} }