From 8b5a1f5b754d51147236c7a50e573d4b041497ee Mon Sep 17 00:00:00 2001 From: Joris Date: Thu, 4 Jan 2024 21:14:27 +0100 Subject: Fix chord shifting with rhythms --- public/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public/main.js') diff --git a/public/main.js b/public/main.js index 3b9e6fc..db9a9f9 100644 --- a/public/main.js +++ b/public/main.js @@ -56,7 +56,7 @@ if (node !== null) { const shift = getShift(tonality, e.target.value) tonality = e.target.value tonalities = tonality === 'F' || tonality.indexOf('♭') > -1 ? tonalities_b : tonalities_s - document.querySelectorAll('.g-Chords__Chord').forEach(chord => { + document.querySelectorAll('.g-Chords__Name').forEach(chord => { if (chord.innerText !== '%') { chord.innerText = applyShift(tonalities, chord.innerText, shift) } -- cgit v1.2.3