Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
neCo2 committed Jun 3, 2024
1 parent de2a6b9 commit 9a089d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mikupad.html
Original file line number Diff line number Diff line change
Expand Up @@ -3578,7 +3578,7 @@

function replaceNewlines(template) {
return Object.fromEntries(
Object.entries(template).map(([key, value]) => [key, value.replaceAll("\\n", "\n")])
Object.entries(template).map(([key, value]) => [key, value?.replaceAll("\\n", "\n")])
);
}

Expand Down

0 comments on commit 9a089d7

Please sign in to comment.