Others interested offer table modified to show only list of persons interest in an offer
This commit was merged in pull request #175.
This commit is contained in:
@@ -3,7 +3,8 @@ import { createSlice } from "@reduxjs/toolkit";
|
||||
const initialState = {
|
||||
jobListTable: false,
|
||||
pendingListTable: false,
|
||||
myTaskTable: false
|
||||
myTaskTable: false,
|
||||
othersInterestedTable: false
|
||||
};
|
||||
|
||||
export const tableReloadSlice = createSlice({
|
||||
@@ -21,6 +22,9 @@ export const tableReloadSlice = createSlice({
|
||||
case 'MYTASKTABLE' :
|
||||
state.myTaskTable = !state.myTaskTable;
|
||||
return
|
||||
case 'OTHERSINTERESTEDTABLE' :
|
||||
state.othersInterestedTable = !state.othersInterestedTable;
|
||||
return
|
||||
default:
|
||||
return state
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user