Merge branch 'master' into redis-cluster-support

This commit is contained in:
Wyatt Johnson
2017-09-20 13:54:41 -06:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ export const viewUserDetail = (userId) => ({type: actions.VIEW_USER_DETAIL, user
export const hideUserDetail = () => ({type: actions.HIDE_USER_DETAIL});
export const changeUserDetailStatuses = (tab) => {
let statuses = [];
let statuses = null;
if (tab === 'rejected') {
statuses = ['REJECTED'];
}
@@ -3,7 +3,7 @@ import * as actions from '../constants/userDetail';
const initialState = {
userId: null,
activeTab: 'all',
statuses: [],
statuses: null,
selectedCommentIds: [],
};