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

Replace CR with LF new line characters

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-03-17 14:44:02 +03:00
parent 3cc12d9599
commit 46427b5c56

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");
}
/**