Merge branch 'master' into pluginize-timestamp

This commit is contained in:
Kiwi
2017-09-20 20:51:25 +02: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: [],
};