diff --git a/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.ts b/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.ts index 8122b80ad..9346306ed 100644 --- a/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.ts +++ b/apps/red-ui/src/app/modules/dossier-overview/components/file-attribute/file-attribute.component.ts @@ -69,6 +69,10 @@ export class FileAttributeComponent extends BaseFormComponent implements OnDestr return this.width ? `${this.width * this.#widthFactor}px` : 'unset'; } + get attributeValueWidth(): string { + return this.width ? `${this.width * 0.9}px` : 'unset'; + } + get isDate(): boolean { return this.fileAttribute.type === FileAttributeConfigTypes.DATE; }