mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-19 11:16:24 +00:00
web/check_results: sort share identifiers in the sharemap display
This commit is contained in:
parent
c6c30ac5d4
commit
4b8cc42f18
@ -142,7 +142,7 @@ class ResultsBase:
|
||||
nickname = c.get_nickname_for_peerid(serverid)
|
||||
shareids = servers.get(serverid, [])
|
||||
shareids.reverse()
|
||||
shareids_s = [ T.tt[shareid, " "] for shareid in shareids ]
|
||||
shareids_s = [ T.tt[shareid, " "] for shareid in sorted(shareids) ]
|
||||
servermap.append(T.tr[T.td[T.tt[base32.b2a(serverid)],
|
||||
" (", nickname, ")"],
|
||||
T.td[shareids_s] ])
|
||||
|
Loading…
Reference in New Issue
Block a user