Merge pull request #950 from danielyxie/dev

hotfix ls printing a bunch of newlines
This commit is contained in:
hydroflame 2021-05-07 22:38:19 -04:00 committed by GitHub
commit fccf2b5cb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1770,20 +1770,18 @@ let Terminal = {
}
postContent(row, config);
}
if(segments.length > 0) {
postElement(<br />);
}
}
const config = { color: "#0000FF" };
postSegments(folders, config);
postElement(<br />);
postSegments(allMessages);
postElement(<br />);
postSegments(allTextFiles);
postElement(<br />);
postSegments(allPrograms);
postElement(<br />);
postSegments(allContracts);
postElement(<br />);
postSegments(allScripts);
},