RED-6381 - Display titles of file attributes in workflow view
This commit is contained in:
parent
44867860c0
commit
f7caa70736
@ -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>
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user