Removing nbsp bug
This commit is contained in:
@@ -103,7 +103,7 @@ export class Editor {
|
||||
} else {
|
||||
if (line.lyrics != "") {
|
||||
current_paragraph.appendChild(
|
||||
document.createTextNode(line.lyrics.replace(" ", " "))
|
||||
document.createTextNode(line.lyrics.replace(" ", "\u00A0"))
|
||||
);
|
||||
} else if (line.chords.length > 0) {
|
||||
for (let chord of line.chords) {
|
||||
|
||||
Reference in New Issue
Block a user