Skip to content

Commit

Permalink
ending transposition fix2
Browse files Browse the repository at this point in the history
  • Loading branch information
hegelespaul committed Jul 17, 2024
1 parent 9fadc2b commit 4431e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ function generateNewHTMLTune(title, composer, sections, key, timesignature, vide
htmlContent += `<pre>`;
singleChord.forEach(chord => {
chord = chord.replace(/0/g, '°');
htmlContent += `<div class="chord>${chord}</div>`;
htmlContent += `<div class="chord">${chord}</div>`;
});
htmlContent += `</pre>`;
});
Expand Down

0 comments on commit 4431e21

Please sign in to comment.