RED-10589 - removed file workload from workflow item on documine.
This commit is contained in:
parent
d1421420f2
commit
bd9ae173f8
@ -27,7 +27,9 @@
|
||||
<redaction-file-attribute [dossier]="dossier" [fileAttribute]="config" [file]="file"></redaction-file-attribute>
|
||||
</div>
|
||||
|
||||
<redaction-file-workload [file]="file"></redaction-file-workload>
|
||||
@if (!isDocumine) {
|
||||
<redaction-file-workload [file]="file"></redaction-file-workload>
|
||||
}
|
||||
|
||||
<div class="file-actions overflow-visible">
|
||||
<redaction-processing-indicator [file]="file" class="mr-8"></redaction-processing-indicator>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
import { ChangeDetectorRef, Component, computed, ElementRef, Input, OnInit, Optional, ViewChild } from '@angular/core';
|
||||
import { DisableStopPropagationDirective, HelpModeService } from '@iqser/common-ui';
|
||||
import { ChangeDetectorRef, Component, ElementRef, Input, OnInit, Optional, ViewChild } from '@angular/core';
|
||||
import { DisableStopPropagationDirective, getConfig, HelpModeService } from '@iqser/common-ui';
|
||||
import { Debounce, trackByFactory } from '@iqser/common-ui/lib/utils';
|
||||
import { Dossier, File, IFileAttributeConfig } from '@red/domain';
|
||||
import { FileAttributesService } from '@services/entity-services/file-attributes.service';
|
||||
@ -37,6 +37,7 @@ import { AsyncPipe, NgForOf, NgIf } from '@angular/common';
|
||||
export class WorkflowItemComponent implements OnInit {
|
||||
@ViewChild('actionsWrapper', { static: true }) private _actionsWrapper: ElementRef;
|
||||
width: number;
|
||||
readonly isDocumine = getConfig().IS_DOCUMINE;
|
||||
readonly trackBy = trackByFactory();
|
||||
@Input({ required: true }) file: File;
|
||||
@Input({ required: true }) dossier: Dossier;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user