From 2adcb3ca85ba4ba337ef50f53dd376d5020f6e77 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Wed, 4 Jun 2025 19:36:44 +0200 Subject: dashboard/app: sort bugs by impact The impact score is deducted from the title. Impact is max(known_titles). --- pkg/html/pages/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/html/pages') 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; -- cgit mrf-deployment