on load, read query string off window to first request

This commit is contained in:
Colin Megill
2017-11-06 11:01:21 -08:00
parent 93ba5ef2aa
commit b13b45b29a

View File

@@ -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))
}