traker
This commit is contained in:
parent
95ba471e1f
commit
356104b475
@ -91,7 +91,7 @@ export const TicketFullScreen = () => {
|
||||
const { showNotification } = useNotification();
|
||||
|
||||
useEffect(() => {
|
||||
apiRequest(`/task/get-task?task_id=${ticketId.id}`).then((taskInfo) => {
|
||||
apiRequest(`/task/get-task?task_id=${ticketId.id}&expand=mark`).then((taskInfo) => {
|
||||
setTaskInfo(taskInfo);
|
||||
setDeadLine(taskInfo.dead_line);
|
||||
setStartDate(
|
||||
|
@ -14,7 +14,7 @@ const initialState = {
|
||||
};
|
||||
|
||||
export const setProjectBoardFetch = createAsyncThunk("userInfo", (id) =>
|
||||
apiRequest(`/project/get-project?project_id=${id}&expand=columns`)
|
||||
apiRequest(`/project/get-project?project_id=${id}&expand=columns,mark`)
|
||||
);
|
||||
|
||||
export const projectsTrackerSlice = createSlice({
|
||||
|
Loading…
Reference in New Issue
Block a user