0
0
Fork 0

travis fixes

This commit is contained in:
cwm 2017-12-12 08:50:31 -06:00
parent 9b7208f4b4
commit b6ded7119e
2 changed files with 1 additions and 3 deletions

View file

@ -35,7 +35,7 @@ const messages = defineMessages({
const getOrderedLists = createSelector([state => state.get('lists')], lists => {
if (!lists) {
return lists;
}
}
return lists.toList().filter(item => !!item).sort((a, b) => a.get('title').localeCompare(b.get('title')));
});