From 026e80ed64709d8aa4b5b9df701753f78a2749bc Mon Sep 17 00:00:00 2001 From: Alain Nussbaumer Date: Sat, 25 Nov 2023 16:48:11 +0100 Subject: [PATCH] [web] Remove console.log() output --- web-src/src/components/LyricsPane.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/web-src/src/components/LyricsPane.vue b/web-src/src/components/LyricsPane.vue index a21635db..57ea77cc 100644 --- a/web-src/src/components/LyricsPane.vue +++ b/web-src/src/components/LyricsPane.vue @@ -159,7 +159,6 @@ export default { verseDuration = this.lyrics[index + 1][1] - verse[1] } const unitDuration = verseDuration / verse[0].length - console.log(`${unitDuration}`) // Split verse into words let duration = 0 return verse[0].match(/\S+\s*/g).map((word) => {