aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/views/index/Notepad/changelog.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/index/Notepad/changelog.ts')
-rw-r--r--src/views/index/Notepad/changelog.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/index/Notepad/changelog.ts b/src/views/index/Notepad/changelog.ts
index 9d2b523..00ff4a4 100644
--- a/src/views/index/Notepad/changelog.ts
+++ b/src/views/index/Notepad/changelog.ts
@@ -6,7 +6,7 @@ export const changelog = async ():Promise<NotepadContent> =>
const title = "Changelog"
return http.get('https://api.github.com/repos/HydroRoll-Team/HydroRoll/releases/latest')
.then(res => {
- const message = "## " + res.data['tag_name'] + "\n" + res.data['body'];
+ const message = "## " + res.data['tag_name'] + "\n" + res.data['body'].trimEnd();
return new NotepadContent(title,message)
})
.catch(err => {