From 5674792536d3a827c062690ff7f1104b9b19ac65 Mon Sep 17 00:00:00 2001 From: smaubio <118258478+smaubio@users.noreply.github.com> Date: Fri, 3 Apr 2026 16:13:21 +0200 Subject: [PATCH] Improve SingleChoiceEntryView --- .../AnnotationViews/SingleChoiceEntryView.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/AnnotationViews/SingleChoiceEntryView.tsx b/src/components/AnnotationViews/SingleChoiceEntryView.tsx index bccd648..d66a23c 100644 --- a/src/components/AnnotationViews/SingleChoiceEntryView.tsx +++ b/src/components/AnnotationViews/SingleChoiceEntryView.tsx @@ -9,6 +9,7 @@ const AUTO_ADVANCE_DELAY_MS = 600; export default function SingleChoiceEntryView({ entry, + index, onSave, isSaving, ratingOptions, @@ -47,7 +48,7 @@ export default function SingleChoiceEntryView({ {/* Sample header */}
- Aufnahme {entry.externalId} + Aufnahme {index + 1} {fullyPlayed && ( @@ -65,14 +66,14 @@ export default function SingleChoiceEntryView({ {/* Must-listen hint */} {!fullyPlayed && ( -

+

Bitte die Aufnahme vollständig anhören, bevor du eine Bewertung abgibst.

)} {/* Dialect + question */}
-
+
{question}
@@ -109,6 +110,11 @@ export default function SingleChoiceEntryView({ ); })}
+ + {/* Footnote */} +

+ Vertrau deinem ersten Eindruck – klingt die Aufnahme authentisch nach diesem Dialekt? Es gibt keine richtige oder falsche Antwort. +

); }