RED-6381 - Display titles of file attributes in workflow view

This commit is contained in:
Valentin Mihai 2023-03-17 13:26:47 +02:00
parent 44867860c0
commit f7caa70736
2 changed files with 19 additions and 2 deletions

View File

@ -13,8 +13,9 @@
</div>
</div>
<div *ngFor="let config of displayedAttributes" class="small-label mt-4">
<b> {{ file.fileAttributes.attributeIdToValue[config.id] || '-' }} </b>
<div *ngFor="let config of displayedAttributes" class="small-label mt-8 attribute">
<b> {{ config.label }} </b>
<span> {{ file.fileAttributes.attributeIdToValue[config.id] || '-' }} </span>
</div>
<redaction-file-workload [file]="file"></redaction-file-workload>

View File

@ -10,6 +10,22 @@
&:hover redaction-file-actions {
display: initial;
}
.attribute {
display: flex;
flex-direction: column;
b {
text-transform: uppercase;
}
b,
span {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
}
.details-wrapper {