From c90c31470604c82e59b6f374330143b4143456e2 Mon Sep 17 00:00:00 2001 From: RemiSaurel Date: Sun, 21 Aug 2022 12:24:38 +0200 Subject: [PATCH] fix playlist id and new alert box when session done --- src/components/Pomodoro.vue | 2 ++ src/components/YtbPlayer.vue | 2 +- src/data/lofi.json | 3 +-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/Pomodoro.vue b/src/components/Pomodoro.vue index 88d98f7..c11e1b0 100644 --- a/src/components/Pomodoro.vue +++ b/src/components/Pomodoro.vue @@ -131,7 +131,9 @@ export default { if (this.isRestingTime) { this.isRestingTime = false; this.resetSession(); + alert("PAUSE TERMINÉE 📚"); } else { + alert("SESSION TERMINÉE 👏"); this.nbSessionsFinished++; if (this.nbSessionsFinished === 4) { this.setupPauseTimer(LONG_PAUSE); diff --git a/src/components/YtbPlayer.vue b/src/components/YtbPlayer.vue index e7e376b..66ee670 100644 --- a/src/components/YtbPlayer.vue +++ b/src/components/YtbPlayer.vue @@ -1,7 +1,7 @@