From d651a543b6749a652df1f69c7bd1810fad6fc4e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Tue, 17 Mar 2015 22:56:26 +0100 Subject: [PATCH] ErrorStore should show init-error --- public/js/stores/ErrorStore.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/js/stores/ErrorStore.js b/public/js/stores/ErrorStore.js index f038b12a47..f3734663a8 100644 --- a/public/js/stores/ErrorStore.js +++ b/public/js/stores/ErrorStore.js @@ -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);