From ef956d2cd977ba72cdad23b118c25ce86828f1c9 Mon Sep 17 00:00:00 2001 From: Laurence Maultsby Date: Tue, 16 May 2017 10:33:04 -0400 Subject: [PATCH 1/1] Added configStore id to prevent conflicts during gzip Signed-off-by: Laurence Maultsby --- skyquake/plugins/config/src/dashboard/dashboard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyquake/plugins/config/src/dashboard/dashboard.jsx b/skyquake/plugins/config/src/dashboard/dashboard.jsx index 99bff0681..743099498 100644 --- a/skyquake/plugins/config/src/dashboard/dashboard.jsx +++ b/skyquake/plugins/config/src/dashboard/dashboard.jsx @@ -15,7 +15,7 @@ import Button from 'widgets/button/rw.button.js'; class ConfigDashboard extends React.Component { constructor(props) { super(props); - this.Store = this.props.flux.stores.hasOwnProperty('ConfigStore') ? this.props.flux.stores.ConfigStore : this.props.flux.createStore(ConfigStore); + this.Store = this.props.flux.stores.hasOwnProperty('ConfigStore') ? this.props.flux.stores.ConfigStore : this.props.flux.createStore(ConfigStore, "ConfigStore"); this.state = this.Store.getState(); } componentWillMount() { -- 2.17.1