Fixed the matches order on the ladder team page.

This commit is contained in:
Scott Erickson 2014-02-19 08:19:13 -08:00
parent 07c0edcefe
commit ece08ba366

View file

@ -87,6 +87,7 @@ module.exports = class LadderTeamView extends RootView
}
ctx.matches = (convertMatch(match) for match in @session.get('matches') or [])
ctx.matches.reverse()
ctx
afterRender: ->