aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/ducks/index.js
diff options
context:
space:
mode:
authorMatthew Shao <me@matshao.com>2017-07-02 12:19:32 +0800
committerMatthew Shao <me@matshao.com>2017-07-02 12:19:32 +0800
commit2e6f56c4e7de1d375eb91e188c3697383b31638f (patch)
tree3a0d38b415f8fae10e8221cd0cf8c03468ba4624 /web/src/js/ducks/index.js
parentd7bbfca167e56510eb4b9cf634f17a1cf0159a6a (diff)
downloadmitmproxy-2e6f56c4e7de1d375eb91e188c3697383b31638f.tar.gz
mitmproxy-2e6f56c4e7de1d375eb91e188c3697383b31638f.tar.bz2
mitmproxy-2e6f56c4e7de1d375eb91e188c3697383b31638f.zip
[web] Try toggle options in option modal.
Diffstat (limited to 'web/src/js/ducks/index.js')
-rw-r--r--web/src/js/ducks/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/src/js/ducks/index.js b/web/src/js/ducks/index.js
index 0f2426ec..be2f2885 100644
--- a/web/src/js/ducks/index.js
+++ b/web/src/js/ducks/index.js
@@ -4,6 +4,7 @@ import flows from "./flows"
import settings from "./settings"
import ui from "./ui/index"
import connection from "./connection"
+import options from './options'
export default combineReducers({
eventLog,
@@ -11,4 +12,5 @@ export default combineReducers({
settings,
connection,
ui,
+ options,
})