Commit 9f384560e3c381c3ab52a3d642aed821e249a91d:
Sort by id
Branch: refs/heads/master
Author: Sebb <[email protected]>
Committer: Sebb <[email protected]>
Pusher: sebb <[email protected]>
------------------------------------------------------------
www/roster/views/committee.js.rb | ++ --
------------------------------------------------------------
4 changes: 2 additions, 2 deletions.
------------------------------------------------------------
diff --git a/www/roster/views/committee.js.rb b/www/roster/views/committee.js.rb
index b7dfb9e..532a015 100644
--- a/www/roster/views/committee.js.rb
+++ b/www/roster/views/committee.js.rb
@@ -10,7 +10,7 @@ def render
_h2 'PMC'
_table do
- roster = @@committee.roster
+ roster = @@committee.roster.sort
for id in roster
person = roster[id]
@@ -32,7 +32,7 @@ def render
else
_h2 'Committers'
_table do
- committers = @@committee.committers
+ committers = @@committee.committers.sort
for id in committers
next if @@committee.roster[id]