diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-02-17 17:40:57 +0100 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-02-17 17:49:11 +0100 |
| commit | ff4c959e9831a40beb55e3d320896f09bc7f8b70 (patch) | |
| tree | a324f6f2e6b1bdc35fcff0b06ef08ed476175aa1 | |
| parent | 431b574b3fdf66d16854089c7d5921c7b1fe726a (diff) | |
dashboard: sort the subsystems list table
| -rw-r--r-- | dashboard/app/subsystems.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dashboard/app/subsystems.html b/dashboard/app/subsystems.html index 254a113fe..c255a3283 100644 --- a/dashboard/app/subsystems.html +++ b/dashboard/app/subsystems.html @@ -19,12 +19,12 @@ The list of polled trees. <table class="list_table"> <caption>Subsystems list</caption> <tr> - <th>Name</th> + <th><a onclick="return sortTable(this, 'Name', textSort)" href="#">Name</a></th> <th>Lists</th> <th>Maintainers</th> - <th>Open bugs</th> - <th>Fixed</th> - <th>Invalid</th> + <th><a onclick="return sortTable(this, 'Open', 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> {{range $item := .List}} <tr> |
