From b13b45b29a3c1495fbc6ce74b0361237cf0c57c5 Mon Sep 17 00:00:00 2001 From: Colin Megill Date: Mon, 6 Nov 2017 11:01:21 -0800 Subject: [PATCH] on load, read query string off window to first request --- src/components/app.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/app.js b/src/components/app.js index 584ab33c..1fc5764b 100644 --- a/src/components/app.js +++ b/src/components/app.js @@ -37,7 +37,12 @@ class App extends React.Component { this._onURLChanged(); this.props.dispatch(actions.initialize()) - this.props.dispatch(actions.requestCells()) + + /* + first request includes query straight off the url bar for now, + + */ + this.props.dispatch(actions.requestCells(window.location.search)) }