diff --git a/src/components/HomePage/HomePage.js b/src/components/HomePage/HomePage.js index 577d935..e426b20 100644 --- a/src/components/HomePage/HomePage.js +++ b/src/components/HomePage/HomePage.js @@ -90,9 +90,8 @@ export default { } }, incPunt(team) { - // Controlla se c'è già una condizione di vittoria + // Se il set è già terminato, evita ulteriori incrementi if (this.checkVittoria()) { - this.$waveui.notify("Il set è terminato!", "warning"); return; } @@ -171,6 +170,7 @@ export default { // Ripristina il servizio allo stato precedente this.sp.servHome = statoServizio.servHome; + } }, // decPunt(team) { @@ -249,4 +249,4 @@ export default { } else { return false } } } -} \ No newline at end of file +}