You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-8
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,12 @@
1
-
Redux DevTools Log Monitor
2
-
=========================
1
+
Redux DevTools Log Monitor Filterable
2
+
=====================================
3
3
4
-
The default monitor for [Redux DevTools](https://github.com/gaearon/redux-devtools) with a tree view.
5
-
It shows a log of states and actions, and lets you change their history.
6
-
7
-

4
+
Fork of [Redux DevTools Log Monitor](https://github.com/gaearon/redux-devtools-log-monitor) with the ability to specify actions to be hidden or shown in DevTools.
`theme` | Either a string referring to one of the themes provided by [redux-devtools-themes](https://github.com/gaearon/redux-devtools-themes) (feel free to contribute!) or a custom object of the same format. Optional. By default, set to [`'nicinabox'`](https://github.com/gaearon/redux-devtools-themes/blob/master/src/nicinabox.js).
53
50
`select` | A function that selects the slice of the state for DevTools to show. For example, `state => state.thePart.iCare.about`. Optional. By default, set to `state => state`.
54
51
`preserveScrollTop` | When `true`, records the current scroll top every second so it can be restored on refresh. This only has effect when used together with `persistState()` enhancer from Redux DevTools. By default, set to `true`.
52
+
`filter` | An object with `blacklist` or `whitelist` arrays, which specify either actions to be hidden or shown in DevTools. If the latter is specified, other than those actions will be hidden.
0 commit comments