From be8c18710d566b23378e35c59553e844b73fc72b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20CHOMAZ?= Date: Sun, 1 Feb 2026 16:15:28 +0100 Subject: [PATCH] (update) add info card about the current question for the game master --- VApp/src/components/CardSolution.vue | 43 ++++++++++++++++++++++------ 1 file changed, 35 insertions(+), 8 deletions(-) diff --git a/VApp/src/components/CardSolution.vue b/VApp/src/components/CardSolution.vue index 6c84c792..788a9e54 100644 --- a/VApp/src/components/CardSolution.vue +++ b/VApp/src/components/CardSolution.vue @@ -3,14 +3,36 @@ mdi-play-network-outline Solution - - - - - - - + +
Question {{ currentQuestionIndex + 1 }}
+
{{ currentQuestion.QuestionText }}
+ + + + + {{ showSolution ? 'Masquer Solution' : 'Voir Solution' }} + + + +
+
{{ currentQuestion.MasterData.CorrectAnswer }}
+
+ mdi-information {{ currentQuestion.MasterData.MasterNotes }} +
+
+ mdi-help-circle {{ currentQuestion.MasterData.Help }} +
+
+
+
+ +
Aucun quiz chargé ou fin du quiz.
+
\ No newline at end of file