1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00

ErrorStore should show init-error

This commit is contained in:
Ivar Conradi Østhus 2015-03-17 22:56:26 +01:00
parent 45871ebb40
commit 9054bf9964

View File

@ -7,6 +7,7 @@ var FeatureStore = Reflux.createStore({
// Initial setup
init: function() {
this.listenTo(FeatureActions.create.failed, this.onError);
this.listenTo(FeatureActions.init.failed, this.onError);
this.listenTo(FeatureActions.update.failed, this.onError);
this.listenTo(FeatureActions.archive.failed, this.onError);
this.listenTo(FeatureActions.revive.failed, this.onError);