Skip to content

Commit 88c7f01

Browse files
committed
remove trim
1 parent c927a7f commit 88c7f01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ function main(): void {
302302
const original = customDictionaryTextBox.value.trimEnd();
303303
const append = original === "" ? "" : "\n\n";
304304
customDictionaryTextBox.value =
305-
`${original}${append}${word}:${definitions.trimEnd()}\n`;
305+
`${original}${append}${word}:${definitions}\n`;
306306
customDictionaryTextBox.scrollTo(
307307
0,
308308
customDictionaryTextBox.scrollHeight,

0 commit comments

Comments
 (0)