mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-06 05:26:54 +08:00
fix: unclosed word tags in words history
!nuf
This commit is contained in:
parent
2a6bfbeefb
commit
f52f262f71
1 changed files with 3 additions and 1 deletions
|
@ -1395,7 +1395,9 @@ async function loadWordsHistory(): Promise<boolean> {
|
|||
wordEl += "<letter>" + char + "</letter>";
|
||||
}
|
||||
wordEl += "</div>";
|
||||
} catch {}
|
||||
} catch {
|
||||
wordEl += "</div>";
|
||||
}
|
||||
}
|
||||
wordsHTML += wordEl;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue