aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2023-02-17 19:27:13 +0100
committerAleksandr Nogikh <wp32pw@gmail.com>2023-02-17 20:22:07 +0100
commitd02e9a70103778b8294e3f045d635acfd005a534 (patch)
tree3dd8c89dac5a593c91cf77243655cf38d8ad6cd0
parent3222c2ed23bb14945c7040d3932b71c276fd2f6a (diff)
dashboard: sort subsystems table by Open bugs
Fix a bug in the sort function call arguments.
-rw-r--r--dashboard/app/subsystems.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/subsystems.html b/dashboard/app/subsystems.html
index c255a3283..5c0afb058 100644
--- a/dashboard/app/subsystems.html
+++ b/dashboard/app/subsystems.html
@@ -22,7 +22,7 @@ The list of polled trees.
<th><a onclick="return sortTable(this, 'Name', textSort)" href="#">Name</a></th>
<th>Lists</th>
<th>Maintainers</th>
- <th><a onclick="return sortTable(this, 'Open', numSort)" href="#">Open bugs</a></th>
+ <th><a onclick="return sortTable(this, 'Open bugs', numSort)" href="#">Open bugs</a></th>
<th><a onclick="return sortTable(this, 'Fixed', numSort)" href="#">Fixed</a></th>
<th><a onclick="return sortTable(this, 'Invalid', numSort)" href="#">Invalid</a></th>
</tr>