summaryrefslogtreecommitdiffstats
path: root/web/react/stores/admin_store.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-08 12:56:36 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-08 12:56:36 -0500
commit0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8 (patch)
treee2506f66379ba6b3bd93b3753c2064332eb3fd55 /web/react/stores/admin_store.jsx
parentb6300b1656506b3ce264c8844dd11865ca61d391 (diff)
parent2af861423619271651e01f1bb879c6e5f189f241 (diff)
downloadchat-0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8.tar.gz
chat-0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8.tar.bz2
chat-0fcb4252c8f873f5c28c08fc600368cf8d1fe6a8.zip
Merge pull request #2101 from hmhealey/plt1415
PLT-1415 Renamed RECIEVED_* to RECEIVED_*
Diffstat (limited to 'web/react/stores/admin_store.jsx')
-rw-r--r--web/react/stores/admin_store.jsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/web/react/stores/admin_store.jsx b/web/react/stores/admin_store.jsx
index 8f43091a7..eb3254cfe 100644
--- a/web/react/stores/admin_store.jsx
+++ b/web/react/stores/admin_store.jsx
@@ -135,19 +135,19 @@ AdminStoreClass.dispatchToken = AppDispatcher.register((payload) => {
var action = payload.action;
switch (action.type) {
- case ActionTypes.RECIEVED_LOGS:
+ case ActionTypes.RECEIVED_LOGS:
AdminStore.saveLogs(action.logs);
AdminStore.emitLogChange();
break;
- case ActionTypes.RECIEVED_SERVER_AUDITS:
+ case ActionTypes.RECEIVED_SERVER_AUDITS:
AdminStore.saveAudits(action.audits);
AdminStore.emitAuditChange();
break;
- case ActionTypes.RECIEVED_CONFIG:
+ case ActionTypes.RECEIVED_CONFIG:
AdminStore.saveConfig(action.config);
AdminStore.emitConfigChange();
break;
- case ActionTypes.RECIEVED_ALL_TEAMS:
+ case ActionTypes.RECEIVED_ALL_TEAMS:
AdminStore.saveAllTeams(action.teams);
AdminStore.emitAllTeamsChange();
break;