aboutsummaryrefslogtreecommitdiff
path: root/src/web/js/constants/JarrConstants.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/js/constants/JarrConstants.js')
-rw-r--r--src/web/js/constants/JarrConstants.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/web/js/constants/JarrConstants.js b/src/web/js/constants/JarrConstants.js
index 3d334ee3..d00f24a8 100644
--- a/src/web/js/constants/JarrConstants.js
+++ b/src/web/js/constants/JarrConstants.js
@@ -14,13 +14,13 @@ var keyMirror = require('keymirror');
module.exports = {
MenuActionTypes: keyMirror({
RELOAD_MENU: null,
- MENU_FILTER_ALL: null,
- MENU_FILTER_UNREAD: null,
- MENU_FILTER_ERROR: null,
+ PARENT_FILTER: null,
+ MENU_FILTER: null,
}),
MiddlePanelActionTypes: keyMirror({
+ PARENT_FILTER: null,
RELOAD_MIDDLE_PANEL: null,
- MIDDLE_PANEL_PARENT_FILTER: null,
MIDDLE_PANEL_FILTER: null,
+ CHANGE_ATTR: null,
}),
};
bgstack15