render correctly

This commit is contained in:
Keagan McClelland
2021-03-03 14:45:27 -07:00
parent b152a93dd8
commit 1a7d40afa9

View File

@@ -31,7 +31,7 @@ export class ServerLogsPage {
this.logs = '' this.logs = ''
this.$loading$.next(true) this.$loading$.next(true)
try { try {
this.logs = await this.apiService.getServerLogs() this.logs = (await this.apiService.getServerLogs()).join('\n')
this.error = '' this.error = ''
setTimeout(async () => await this.content.scrollToBottom(100), 200) setTimeout(async () => await this.content.scrollToBottom(100), 200)
} catch (e) { } catch (e) {