mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-08 05:03:39 +08:00
fix(custom text): resolve incorrect loading of custom text with pipes (sanidhyas3s) (#4619)
This commit is contained in:
parent
6d57a1949e
commit
75e7cee717
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ function applySaved(name: string, long: boolean): void {
|
|||
if (long) {
|
||||
text = text.slice(CustomText.getCustomTextLongProgress(name));
|
||||
}
|
||||
CustomText.setPopupTextareaState(text.join(CustomText.delimiter));
|
||||
CustomText.setPopupTextareaState(text.join(" "));
|
||||
}
|
||||
|
||||
$("#popups").on(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue