From b526c167546b19ea1c27324455eac04afdb75871 Mon Sep 17 00:00:00 2001 From: Laurence Maultsby Date: Tue, 16 May 2017 10:39:59 -0400 Subject: [PATCH] Added accountStore id to prevent conflicts during gzip Signed-off-by: Laurence Maultsby --- skyquake/plugins/accounts/src/account/accountsDashboard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- 2.17.1