From aaa69f146230b9e6f0440e5d43f9823d0f937592 Mon Sep 17 00:00:00 2001 From: Colin Wong Date: Mon, 9 Dec 2024 16:51:07 -0600 Subject: [PATCH] Fix sorting key for Total table header --- src/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/app.js b/src/js/app.js index 9a845d2..1b8ef43 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -1157,7 +1157,7 @@ th.colSpan = 1; th = tr.appendChild(createHeaderCell("part2", "----- Part 2 -----", "#ffff66")); th.colSpan = 3; - th = tr.appendChild(createHeaderCell("total", "----- Total -----")); + th = tr.appendChild(createHeaderCell("completion", "----- Total -----")); th.colSpan = 1; } {