From 5aa9640987f8b64b890f19454d64fbab0d211b36 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 20 Oct 2019 13:04:07 +0300 Subject: [PATCH] store: fix fetchCount to include fetching entries and userInfo. --- src/store/reducers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/reducers.ts b/src/store/reducers.ts index 65ad14b..e29f2a8 100644 --- a/src/store/reducers.ts +++ b/src/store/reducers.ts @@ -253,7 +253,7 @@ const fetchActions = [ ] as Array>>; for (const func in actions) { - if (func.startsWith('fetchList') || + if (func.startsWith('fetch') || func.startsWith('add') || func.startsWith('update') || func.startsWith('delete')) {