From 93fe20304bf45fcc7f27a932bcf6d94afac71d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adina=20=C8=9Aeudan?= Date: Tue, 29 Jun 2021 16:24:02 +0300 Subject: [PATCH] Fixed params order --- .../modules/dossier/services/manual-annotation.service.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/red-ui/src/app/modules/dossier/services/manual-annotation.service.ts b/apps/red-ui/src/app/modules/dossier/services/manual-annotation.service.ts index ac87e06b2..27aa38005 100644 --- a/apps/red-ui/src/app/modules/dossier/services/manual-annotation.service.ts +++ b/apps/red-ui/src/app/modules/dossier/services/manual-annotation.service.ts @@ -159,9 +159,9 @@ export class ManualAnnotationService { } else { return this._manualRedactionControllerService .undo( + annotationWrapper.id, this._appStateService.activeDossierId, - this._appStateService.activeFileId, - annotationWrapper.id + this._appStateService.activeFileId ) .pipe( tap( @@ -196,9 +196,9 @@ export class ManualAnnotationService { if (annotationWrapper.dictionary === 'manual') { return this._manualRedactionControllerService .declineRequest( + annotationWrapper.id, this._appStateService.activeDossierId, - this._appStateService.activeFileId, - annotationWrapper.id + this._appStateService.activeFileId ) .pipe( tap(