summaryrefslogtreecommitdiffstats
path: root/webapp/dispatcher
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/dispatcher')
-rw-r--r--webapp/dispatcher/app_dispatcher.jsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/webapp/dispatcher/app_dispatcher.jsx b/webapp/dispatcher/app_dispatcher.jsx
index dcc43129b..5e43d3ad7 100644
--- a/webapp/dispatcher/app_dispatcher.jsx
+++ b/webapp/dispatcher/app_dispatcher.jsx
@@ -8,6 +8,10 @@ const PayloadSources = Constants.PayloadSources;
const AppDispatcher = Object.assign(new Flux.Dispatcher(), {
handleServerAction: function performServerAction(action) {
+ if (!action.type) {
+ console.warning('handleServerAction called with undefined action type'); // eslint-disable-line no-console
+ }
+
var payload = {
source: PayloadSources.SERVER_ACTION,
action
@@ -16,6 +20,10 @@ const AppDispatcher = Object.assign(new Flux.Dispatcher(), {
},
handleViewAction: function performViewAction(action) {
+ if (!action.type) {
+ console.warning('handleViewAction called with undefined action type'); // eslint-disable-line no-console
+ }
+
var payload = {
source: PayloadSources.VIEW_ACTION,
action