From 5f9e37062c3622c1b8c379c51a94f7b73e573924 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Tue, 12 May 2026 13:26:16 +0200 Subject: [PATCH] fix(controller): aggiunge tasto indietro nel dialog set vinto Permette di annullare l'ultimo punto (decPunt) nel caso in cui l'ultimo punto del set sia stato assegnato per errore. --- src/components/ControllerPage.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/ControllerPage.vue b/src/components/ControllerPage.vue index 0aee7fa..fb1e4ca 100644 --- a/src/components/ControllerPage.vue +++ b/src/components/ControllerPage.vue @@ -85,6 +85,7 @@
{{ state.sp.nomi[setVintoTeam] }}
Configura le formazioni per il prossimo set
+
@@ -471,6 +472,11 @@ export default { this.confirmReset = false }, + undoUltimoPoint() { + this.sendAction({ type: 'decPunt' }) + this.showSetVinto = false + }, + doNuovoSet() { this.sendAction({ type: 'nuovoSet', team: this.setVintoTeam }) this.showSetVinto = false