Commits

Giuseppe Digilio authored 7f30e92782d
[CST-6876] Fix issue with invalid request done when the claimed/pool task changed its status due to a performed action
No tags

src/app/shared/object-list/my-dspace-result-list-element/claimed-search-result/claimed-search-result-list-element.component.html

Modified
1 -<ng-container *ngVar="(workflowitemRD$ | async)?.payload as workflowitem">
2 - <ds-themed-item-list-preview *ngIf="workflowitem"
3 - [item]="(workflowitem?.item | async)?.payload"
4 - [object]="object"
5 - [showSubmitter]="showSubmitter"
6 - [status]="status"></ds-themed-item-list-preview>
7 - <ds-claimed-task-actions *ngIf="workflowitem" [object]="dso" (processCompleted)="reloadedObject.emit($event.reloadedObject)"></ds-claimed-task-actions>
8 -</ng-container>
1 +<ds-themed-item-list-preview *ngIf="workflowitem$.value"
2 + [item]="(workflowitem$.value?.item | async)?.payload"
3 + [object]="object"
4 + [showSubmitter]="showSubmitter"
5 + [status]="status"></ds-themed-item-list-preview>
6 +
7 +<div class="row">
8 + <div [ngClass]="showThumbnails ? 'offset-3 offset-md-2 pl-3' : ''">
9 + <ds-claimed-task-actions *ngIf="workflowitem$.value"
10 + [object]="dso"
11 + (processCompleted)="reloadedObject.emit($event.reloadedObject)"></ds-claimed-task-actions>
12 + </div>
13 +</div>
14 +
15 +
16 +
17 +
9 18

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut