1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

ErrorStore should show init-error

This commit is contained in:
Ivar Conradi Østhus 2015-03-17 22:56:26 +01:00
parent 3a8ae8f53e
commit d651a543b6

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);