From: kashalkar Date: Tue, 16 May 2017 15:58:28 +0000 (+0200) Subject: Merge "Added configStore id to prevent conflicts during gzip" into v2.0 X-Git-Tag: v2.0.1~5 X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=commitdiff_plain;h=f27d73dfd8673b29a2d98871a3a0bb1d094d7ee6;hp=eb2149627f3b437355f54a2778b365104cf3839d Merge "Added configStore id to prevent conflicts during gzip" into v2.0 --- 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() {