Revert "RED-4654: Fixed under review bulk action."

This reverts commit 57b035c86f95a56bcac8a24353b8f6e354d93d04.
This commit is contained in:
Nicoleta Panaghiu 2022-08-01 12:30:30 +03:00
parent 57b035c86f
commit 2a0633eb36

View File

@ -82,9 +82,6 @@ export class BulkActionsService {
async backToUnderReview(files: File[]): Promise<void> {
this._loadingService.start();
if (files.filter(file => file.workflowStatus === 'NEW').length === files.length) {
await this._fileAssignService.assignToMe(files);
}
await firstValueFrom(this._filesService.setUnderReviewFor(files, files[0].dossierId));
this._loadingService.stop();
}