diff --git a/ui/src/app/core/log.service.ts b/ui/src/app/core/log.service.ts index 2989b7bb7..13e6e3d15 100644 --- a/ui/src/app/core/log.service.ts +++ b/ui/src/app/core/log.service.ts @@ -81,7 +81,7 @@ export class LogService { // subscribe to incoming data events from server to client this.io.socket.on('stdout', (data: string) => { if (this.pluginName) { - const lines = data.split('\r\n'); + const lines = data.split('\n'); let includeNextLine = false; lines.forEach((line) => {