Skip to content

Commit 6ffe7ac

Browse files
committed
frontend: fix lint
1 parent a88c686 commit 6ffe7ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ async function graphHistory(history, path) {
108108
}
109109

110110
async function showDirectory(dir, revision, files) {
111-
files.sort(function (file1, file2) {
112-
return file1.coveragePercent - file2.coveragePercent
111+
files.sort(function(file1, file2) {
112+
return file1.coveragePercent - file2.coveragePercent;
113113
});
114114
const context = {
115115
navbar: buildNavbar(dir, revision),

0 commit comments

Comments
 (0)