@zeniai/client-epic-state 5.1.18-betaDI8 → 5.1.18-betaDI9

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.
@@ -65,14 +65,12 @@ export const initialState = {
65
65
  },
66
66
  filters: {
67
67
  categoryCombinationOperator: 'AND',
68
- categories: [
69
- {
70
- field: 'status',
71
- matchingOperator: 'not_equal',
72
- values: ['resolved'],
73
- valuesCombinationOperator: 'ANY',
74
- },
75
- ],
68
+ // Default to no filters. The Completed tab now owns the "hide resolved
69
+ // tasks from the live list" responsibility via the byTab split in
70
+ // updateTaskList / updateTaskFromListView / the updateTasks
71
+ // extraReducer. Keeping the historical `status != resolved` filter
72
+ // here would empty out the Completed tab.
73
+ categories: [],
76
74
  },
77
75
  hasValidState() {
78
76
  return this.fetchState == 'Completed';
@@ -69,14 +69,12 @@ exports.initialState = {
69
69
  },
70
70
  filters: {
71
71
  categoryCombinationOperator: 'AND',
72
- categories: [
73
- {
74
- field: 'status',
75
- matchingOperator: 'not_equal',
76
- values: ['resolved'],
77
- valuesCombinationOperator: 'ANY',
78
- },
79
- ],
72
+ // Default to no filters. The Completed tab now owns the "hide resolved
73
+ // tasks from the live list" responsibility via the byTab split in
74
+ // updateTaskList / updateTaskFromListView / the updateTasks
75
+ // extraReducer. Keeping the historical `status != resolved` filter
76
+ // here would empty out the Completed tab.
77
+ categories: [],
80
78
  },
81
79
  hasValidState() {
82
80
  return this.fetchState == 'Completed';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zeniai/client-epic-state",
3
- "version": "5.1.18-betaDI8",
3
+ "version": "5.1.18-betaDI9",
4
4
  "description": "Shared module between Web & Mobile containing required abstractions for state management, async network communication. ",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/esm/index.js",