fixed param order

This commit is contained in:
Timo 2021-06-28 19:54:10 +03:00
parent afbebb2c8b
commit cd9071d40c

View File

@ -87,9 +87,9 @@ export class ManualAnnotationService {
return this._manualRedactionControllerService
.approveRequest(
{ addOrRemoveFromDictionary: addToDictionary },
annotationId,
this._appStateService.activeDossierId,
this._appStateService.activeFile.fileId,
annotationId
this._appStateService.activeFile.fileId
)
.pipe(
tap(
@ -134,9 +134,9 @@ export class ManualAnnotationService {
if (this._permissionsService.isApprover()) {
return this._manualRedactionControllerService
.declineRequest(
annotationWrapper.id,
this._appStateService.activeDossierId,
this._appStateService.activeFileId,
annotationWrapper.id
this._appStateService.activeFileId
)
.pipe(
tap(