1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix: overlapped pod logs (#5029)

This commit is contained in:
Alex Andreev 2022-03-17 15:15:04 +03:00 committed by GitHub
parent 3cc12d9599
commit 8c8bab540c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,7 @@ export class LogStore {
previous: showPrevious,
});
return result.trimEnd().split("\n");
return result.trimEnd().replace(/\r/g, "\n").split("\n");
}
/**