Bump to side bar list panel max length

This commit is contained in:
KMY 2023-05-10 13:18:44 +09:00
parent 1c174a6f7b
commit 7c9457fd5c

View file

@ -13,7 +13,7 @@ const getOrderedLists = createSelector([state => state.get('lists')], lists => {
return lists;
}
return lists.toList().filter(item => !!item).sort((a, b) => a.get('title').localeCompare(b.get('title'))).take(4);
return lists.toList().filter(item => !!item).sort((a, b) => a.get('title').localeCompare(b.get('title'))).take(8);
});
const mapStateToProps = state => ({