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 Jim Ehrismann
parent 65b18c4e79
commit 814204b57f

View File

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