mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: issue view not updating order_by value (#324)
This commit is contained in:
parent
a550f4b161
commit
98d4473501
@ -229,7 +229,10 @@ export const IssueViewContextProvider: React.FC<{ children: React.ReactNode }> =
|
|||||||
});
|
});
|
||||||
|
|
||||||
if (!workspaceSlug || !projectId) return;
|
if (!workspaceSlug || !projectId) return;
|
||||||
saveDataToServer(workspaceSlug as string, projectId as string, state);
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
||||||
|
...state,
|
||||||
|
orderBy: property,
|
||||||
|
});
|
||||||
},
|
},
|
||||||
[projectId, workspaceSlug, state]
|
[projectId, workspaceSlug, state]
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user