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:
victorAnumudu
2023-06-15 16:31:28 +01:00
parent 0b14c7675b
commit d5ce5d758a
5 changed files with 24 additions and 9 deletions
+5 -1
View File
@@ -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
}