From 157e8d98f7ddd4c6dfe070598370f573ec985138 Mon Sep 17 00:00:00 2001 From: Romeo Van Snick Date: Sat, 13 Feb 2021 12:07:32 +0100 Subject: [PATCH] Fix folder colspan --- src/tabulate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tabulate.js b/src/tabulate.js index 7a23b721..07cd0f5e 100644 --- a/src/tabulate.js +++ b/src/tabulate.js @@ -38,7 +38,7 @@ function toFolder(path) { return "" } - return tr(td({ colspan: 5 }, b(path))) + return tr(td({ colspan: 6 }, b(path))) } function getStatement(file) {