aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/js')
-rw-r--r--web/src/js/ducks/eventLog.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/src/js/ducks/eventLog.js b/web/src/js/ducks/eventLog.js
index 1c4cbfe4..31dc82ea 100644
--- a/web/src/js/ducks/eventLog.js
+++ b/web/src/js/ducks/eventLog.js
@@ -12,7 +12,7 @@ export const ERROR = 'EVENTLOG_ERROR'
const defaultState = {
visible: false,
filters: { debug: false, info: true, web: true },
- list: reduceList()
+ list: reduceList(undefined, { type: Symbol('EVENTLOG_INIT_LIST') })
}
export default function reduce(state = defaultState, action) {