summaryrefslogtreecommitdiffstats
path: root/web/react/stores
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-02-22 10:54:42 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2016-02-22 10:54:42 -0500
commit32ae72d91d31699899d5e2084cf7faa40c81e42c (patch)
tree7e5e2f7ed7a1d2edca368ca91bd8416336a6cedf /web/react/stores
parent51680a7cd84661340cb727fea09b99d5350d9160 (diff)
parent4c92a1c1e35402730f74cf24a0c71729f4d0a676 (diff)
downloadchat-32ae72d91d31699899d5e2084cf7faa40c81e42c.tar.gz
chat-32ae72d91d31699899d5e2084cf7faa40c81e42c.tar.bz2
chat-32ae72d91d31699899d5e2084cf7faa40c81e42c.zip
Merge pull request #2208 from mattermost/client-upgrades
Updating some client deps + eslint
Diffstat (limited to 'web/react/stores')
-rw-r--r--web/react/stores/modal_store.jsx2
-rw-r--r--web/react/stores/suggestion_store.jsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/web/react/stores/modal_store.jsx b/web/react/stores/modal_store.jsx
index 931443f62..5ea38030b 100644
--- a/web/react/stores/modal_store.jsx
+++ b/web/react/stores/modal_store.jsx
@@ -28,7 +28,7 @@ class ModalStoreClass extends EventEmitter {
handleEventPayload(payload) {
// toggle event handlers should accept a boolean show/hide value and can accept a map of arguments
- const {type, value, ...args} = payload.action; //eslint-disable-line no-redeclare
+ const {type, value, ...args} = payload.action; //eslint-disable-line no-use-before-define
switch (type) {
case ActionTypes.TOGGLE_IMPORT_THEME_MODAL:
diff --git a/web/react/stores/suggestion_store.jsx b/web/react/stores/suggestion_store.jsx
index dd5c107e0..efd2b76ed 100644
--- a/web/react/stores/suggestion_store.jsx
+++ b/web/react/stores/suggestion_store.jsx
@@ -210,7 +210,7 @@ class SuggestionStore extends EventEmitter {
}
handleEventPayload(payload) {
- const {type, id, ...other} = payload.action; // eslint-disable-line no-redeclare
+ const {type, id, ...other} = payload.action; // eslint-disable-line no-use-before-define
switch (type) {
case ActionTypes.SUGGESTION_PRETEXT_CHANGED: