@zeniai/client-epic-state 4.20.2-beta36RR → 4.20.2-beta37RR
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -335,8 +335,15 @@ export const getAllTasks = createSelector((state) => state.taskListState, (state
|
|
|
335
335
|
}
|
|
336
336
|
const { fetchState, error } = reduceAnyFetchState(fetchStateVariables);
|
|
337
337
|
const taskGroupTemplates = getTaskGroupTemplateByIds(taskGroupTemplateState, taskGroupTemplateViewState.taskGroupTemplateIds);
|
|
338
|
+
const tabCounts = {
|
|
339
|
+
live: taskListState.byTab.live.taskIds.length,
|
|
340
|
+
archived: taskListState.byTab.archived.taskIds.length,
|
|
341
|
+
deleted: taskListState.byTab.deleted.taskIds.length,
|
|
342
|
+
snoozed: taskListState.byTab.snoozed.taskIds.length,
|
|
343
|
+
};
|
|
338
344
|
return {
|
|
339
345
|
currentTab: taskListState.currentTab,
|
|
346
|
+
tabCounts,
|
|
340
347
|
uiState: taskListState.uiState,
|
|
341
348
|
filters: taskListState.filters,
|
|
342
349
|
taskGroupTemplates,
|