feat(log): split large log into chunks

This commit is contained in:
Yury Shkoda
2023-04-18 11:42:10 +03:00
parent c72ecc7e59
commit 75f5a3c0b3
5 changed files with 387 additions and 40 deletions
@@ -178,7 +178,8 @@ const useEditor = ({
const log: LogObject = {
body: logLines.join(`\n`),
errors,
warnings
warnings,
linesCount: logLines.length
}
setLog(log)