From: Laurence Maultsby Date: Tue, 16 May 2017 14:39:59 +0000 (-0400) Subject: Added accountStore id to prevent conflicts during gzip X-Git-Tag: v2.0.1~4^2 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=commitdiff_plain;h=b526c167546b19ea1c27324455eac04afdb75871 Added accountStore id to prevent conflicts during gzip Signed-off-by: Laurence Maultsby --- diff --git a/skyquake/plugins/accounts/src/account/accountsDashboard.jsx b/skyquake/plugins/accounts/src/account/accountsDashboard.jsx index f139b474b..7b5601182 100644 --- a/skyquake/plugins/accounts/src/account/accountsDashboard.jsx +++ b/skyquake/plugins/accounts/src/account/accountsDashboard.jsx @@ -26,7 +26,7 @@ import 'style/layout.scss'; class AccountsDashboard extends React.Component { constructor(props) { super(props); - this.Store = this.props.flux.stores.hasOwnProperty('AccountStore') ? this.props.flux.stores.AccountStore : this.props.flux.createStore(AccountStore); + this.Store = this.props.flux.stores.hasOwnProperty('AccountStore') ? this.props.flux.stores.AccountStore : this.props.flux.createStore(AccountStore, "AccountStore"); this.state = this.Store.getState(); } componentWillMount() {