From fbfdd426bfbf84df90278935a2ed790bc8116ae8 Mon Sep 17 00:00:00 2001 From: TheGeekTortoise Date: Tue, 9 Nov 2021 13:08:28 +0100 Subject: [PATCH] fix previous commit --- src/components/annotations/ListAnnotations.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/annotations/ListAnnotations.vue b/src/components/annotations/ListAnnotations.vue index 8a8b14e5c..8f51872cf 100644 --- a/src/components/annotations/ListAnnotations.vue +++ b/src/components/annotations/ListAnnotations.vue @@ -430,7 +430,7 @@ export default { let users = (this.selectedAnnotationType === this.jobAnnotationOption) ? this.userJobs : this.projectUsers; let collection = new AnnotationCollection({ project: this.project.id, - terms: this.selectedTermsIds.length===this.terms.length ? null : this.selectedTermsIds, + terms: this.selectedTermsIds.length===this.termsOptions.length ? null : this.selectedTermsIds, images: this.selectedImagesIds.length===this.images.length ? null : this.selectedImagesIds, users: this.selectedUsersIds.length===users.length ? null : this.selectedUsersIds, reviewed: this.reviewed,