We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 152fa79 commit 5dc1e91Copy full SHA for 5dc1e91
src/components/digestMiddleware.js
@@ -1,5 +1,7 @@
1
export default function digestMiddleware($rootScope) {
2
return store => next => action => {
3
- $rootScope.$evalAsync(next(action));
+ const res = next(action);
4
+ $rootScope.$evalAsync(res);
5
+ return res;
6
};
7
}
0 commit comments