diff --git a/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.html b/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.html
index ffe99a522..3b07d1bae 100644
--- a/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.html
+++ b/apps/red-ui/src/app/modules/file-preview/components/annotation-actions/annotation-actions.component.html
@@ -38,7 +38,7 @@
>
-
-
();
annotationPermissions: AnnotationPermissions;
constructor(
@@ -94,15 +93,15 @@ export class AnnotationActionsComponent implements OnChanges {
removeOrSuggestRemoveAnnotation($event: MouseEvent, removeFromDict: boolean) {
$event.stopPropagation();
- this.annotationActionsService.removeOrSuggestRemoveAnnotation($event, this.annotations, removeFromDict, this.annotationsChanged);
+ this.annotationActionsService.removeOrSuggestRemoveAnnotation($event, this.annotations, removeFromDict);
}
markAsFalsePositive($event: MouseEvent) {
- this.annotationActionsService.markAsFalsePositive($event, this.annotations, this.annotationsChanged);
+ this.annotationActionsService.markAsFalsePositive($event, this.annotations);
}
acceptRecommendation($event: MouseEvent) {
- this.annotationActionsService.convertRecommendationToAnnotation($event, this.annotations, this.annotationsChanged);
+ this.annotationActionsService.convertRecommendationToAnnotation($event, this.annotations);
}
hideAnnotation($event: MouseEvent) {
@@ -124,11 +123,11 @@ export class AnnotationActionsComponent implements OnChanges {
}
acceptResize($event: MouseEvent) {
- return this.annotationActionsService.acceptResize($event, this.annotations[0], this.annotationsChanged);
+ return this.annotationActionsService.acceptResize($event, this.annotations[0]);
}
cancelResize($event: MouseEvent) {
- return this.annotationActionsService.cancelResize($event, this.annotations[0], this.annotationsChanged);
+ return this.annotationActionsService.cancelResize($event, this.annotations[0]);
}
private async _setPermissions() {
diff --git a/apps/red-ui/src/app/modules/file-preview/components/annotations-list/annotations-list.component.html b/apps/red-ui/src/app/modules/file-preview/components/annotations-list/annotations-list.component.html
index 632c97e3a..4d28f4d07 100644
--- a/apps/red-ui/src/app/modules/file-preview/components/annotations-list/annotations-list.component.html
+++ b/apps/red-ui/src/app/modules/file-preview/components/annotations-list/annotations-list.component.html
@@ -1,10 +1,6 @@
-
+
();
@Output() readonly selectAnnotations = new EventEmitter();
- @Output() readonly annotationsChanged = new EventEmitter();
highlightGroups$ = new BehaviorSubject([]);
diff --git a/apps/red-ui/src/app/modules/file-preview/components/file-workload/file-workload.component.html b/apps/red-ui/src/app/modules/file-preview/components/file-workload/file-workload.component.html
index 70b6abc7f..e8b918261 100644
--- a/apps/red-ui/src/app/modules/file-preview/components/file-workload/file-workload.component.html
+++ b/apps/red-ui/src/app/modules/file-preview/components/file-workload/file-workload.component.html
@@ -56,7 +56,6 @@
{{ listingService.selectedLength$ | async }} selected
;
@Output() readonly selectAnnotations = new EventEmitter();
@Output() readonly selectPage = new EventEmitter();
- @Output() readonly annotationsChanged = new EventEmitter();
displayedPages: number[] = [];
pagesPanelActive = true;
readonly displayedAnnotations$: Observable