Skip to content

Commit

Permalink
fix(custom text): resolve incorrect loading of custom text with pipes…
Browse files Browse the repository at this point in the history
… (sanidhyas3s) (#4619)
  • Loading branch information
sanidhyas3s committed Sep 11, 2023
1 parent 6d57a19 commit 75e7cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/ts/popups/saved-texts-popup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 75e7cee

Please sign in to comment.