aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html/pages/common.js
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/html/pages/common.js')
-rw-r--r--pkg/html/pages/common.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/html/pages/common.js b/pkg/html/pages/common.js
index 78cd92277..2c274a7ac 100644
--- a/pkg/html/pages/common.js
+++ b/pkg/html/pages/common.js
@@ -29,7 +29,7 @@ function sortTable(item, colName, conv, desc = false) {
function findColumnByName(headers, colName) {
for (i = 0; i < headers.length; i++) {
- if (headers[i].textContent == colName)
+ if (headers[i].innerText == colName)
return i;
}
return 0;