Updates
This commit is contained in:
parent
c9ca054f39
commit
91d23707fb
@ -53,10 +53,14 @@
|
||||
></iqser-table>
|
||||
|
||||
<iqser-workflow
|
||||
(addElement)="fileInput.click()"
|
||||
*ngIf="(listingMode$ | async) === listingModes.workflow"
|
||||
[config]="workflowConfig"
|
||||
[itemClasses]="{ disabled: disabledFn }"
|
||||
[itemTemplate]="workflowItemTemplate"
|
||||
addElementColumn="UNASSIGNED"
|
||||
addElementIcon="red:upload"
|
||||
itemHeight="56px"
|
||||
></iqser-workflow>
|
||||
</div>
|
||||
|
||||
|
||||
@ -94,6 +94,7 @@
|
||||
|
||||
.filename {
|
||||
font-weight: 600;
|
||||
line-height: 18px;
|
||||
@include common-mixins.line-clamp(1);
|
||||
}
|
||||
}
|
||||
|
||||
@ -122,15 +122,15 @@ export class DossierOverviewScreenComponent extends ListingComponent<FileStatusW
|
||||
this.fileAttributeConfigs = this._appStateService.getFileAttributeConfig(
|
||||
this.currentDossier.dossierTemplateId
|
||||
).fileAttributeConfigs;
|
||||
this.listingMode = this.listingModes.workflow;
|
||||
this.workflowConfig = {
|
||||
key: 'status',
|
||||
itemVersionFn: (entity: FileStatusWrapper) => `${entity.lastUpdated}-${entity.numberOfAnalyses}`,
|
||||
columns: [
|
||||
{
|
||||
label: fileStatusTranslations[StatusEnum.UNASSIGNED],
|
||||
key: StatusEnum.UNASSIGNED,
|
||||
enterFn: this.unassignFn,
|
||||
enterPredicate: (entity: FileStatusWrapper) => !!entity,
|
||||
enterPredicate: (entity: FileStatusWrapper) => false,
|
||||
color: '#D3D5DA'
|
||||
},
|
||||
{
|
||||
|
||||
@ -1 +1 @@
|
||||
Subproject commit 5973631a1d554b914a8a036cd7116c9d9f7f4210
|
||||
Subproject commit 5d0bb11c65a5eb17216f6b30c944a14ebd4ece7a
|
||||
Loading…
x
Reference in New Issue
Block a user