Merge remote-tracking branch 'parent/main' into upstream-2024112
This commit is contained in:
commit
3359008684
71 changed files with 1505 additions and 2295 deletions
|
@ -139,9 +139,9 @@ export const getStatusList = createSelector([
|
|||
], (items) => items.toList());
|
||||
|
||||
export const getBookmarkCategoryStatusList = createSelector([
|
||||
(state, bookmarkCategoryId) => state.getIn(['bookmark_categories', bookmarkCategoryId, 'items']),
|
||||
(state, bookmarkCategoryId) => state.getIn(['status_lists', 'bookmark_category_statuses', bookmarkCategoryId, 'items']),
|
||||
], (items) => items ? items.toList() : ImmutableList());
|
||||
|
||||
export const getCircleStatusList = createSelector([
|
||||
(state, circleId) => state.getIn(['circles', circleId, 'items']),
|
||||
(state, circleId) => state.getIn(['status_lists', 'circle_statuses', circleId, `items`]),
|
||||
], (items) => items ? items.toList() : ImmutableList());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue