This commit is contained in:
Mikola
2023-10-24 22:49:12 +03:00
parent 5f92d86bd9
commit c4a4fa1333
5 changed files with 292 additions and 1 deletions

View File

@ -45,6 +45,9 @@ export const projectsTrackerSlice = createSlice({
addPersonToProject: (state, action) => {
state.projectBoard.projectUsers.push(action.payload);
},
addNewTagToProject: (state, action) => {
state.projectBoard.mark.push(action.payload)
},
activeLoader: (state) => {
state.boardLoader = true;
},
@ -179,6 +182,7 @@ export const {
setColumnPriority,
deletePersonOnProject,
addPersonToProject,
addNewTagToProject,
filterCreatedByMe,
filteredParticipateTasks,
filteredExecutorTasks,