aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/html/pages
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-06-04 19:36:44 +0200
committerTaras Madan <tarasmadan@google.com>2025-07-08 16:30:25 +0000
commit2adcb3ca85ba4ba337ef50f53dd376d5020f6e77 (patch)
treed751a1750a8978b6e32524fba954ebd7852e491a /pkg/html/pages
parentabade7941e7b8a888e052cda1a92805ab785c77e (diff)
dashboard/app: sort bugs by impact
The impact score is deducted from the title. Impact is max(known_titles).
Diffstat (limited to 'pkg/html/pages')
-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;