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 c0b192ddfd
commit 692fce549e
2 changed files with 19 additions and 2 deletions

View File

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

View File

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