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

This reverts commit 692fce549e2e58d63aff4a0b4a56f756092d4ef6.
This commit is contained in:
Valentin Mihai 2023-03-17 13:26:47 +02:00
parent 9f71c120a0
commit ab07929942
2 changed files with 2 additions and 19 deletions

View File

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

View File

@ -10,22 +10,6 @@
&: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 {