From 1110c87d13114c7f7f874f0f18f7cb334a40652d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Pumar?= Date: Mon, 10 Jun 2024 16:29:59 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20Fix=20prop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../features/annotation/container/mode/BulkAnnotation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argilla-frontend/components/features/annotation/container/mode/BulkAnnotation.vue b/argilla-frontend/components/features/annotation/container/mode/BulkAnnotation.vue index 6555cea771..87fcf5f380 100644 --- a/argilla-frontend/components/features/annotation/container/mode/BulkAnnotation.vue +++ b/argilla-frontend/components/features/annotation/container/mode/BulkAnnotation.vue @@ -215,7 +215,7 @@ export default { return this.affectAllRecords && this.numberOfSelectedRecords > 100; }, spansQuestionsWithSelectedEntities() { - return this.recordsOnPage[0].questions + return this.record.questions .filter((q) => q.isSpanType) .filter((s) => s.answer.options.some((e) => e.isSelected)); },