From ad00db1c154496992370a24c05ded504def6b4dc Mon Sep 17 00:00:00 2001 From: Dan Percic Date: Mon, 28 Jun 2021 17:40:52 +0300 Subject: [PATCH] fix remove only here tooltip --- .../modules/dossier/services/annotation-actions.service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/red-ui/src/app/modules/dossier/services/annotation-actions.service.ts b/apps/red-ui/src/app/modules/dossier/services/annotation-actions.service.ts index 04351e7a8..2e0491a13 100644 --- a/apps/red-ui/src/app/modules/dossier/services/annotation-actions.service.ts +++ b/apps/red-ui/src/app/modules/dossier/services/annotation-actions.service.ts @@ -305,7 +305,9 @@ export class AnnotationActionsService { availableActions.push({ type: 'actionButton', img: this._convertPath('/assets/icons/general/trash.svg'), - title: this._translateService.instant('remove-annotation.only-here'), + title: this._translateService.instant( + 'annotation-actions.remove-annotation.only-here' + ), onClick: () => { this._ngZone.run(() => { this.suggestRemoveAnnotation(null, annotations, false, annotationsChanged);