mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
[WEB-1211] fix: inbox issue description revalidate (#4388)
This commit is contained in:
parent
3b17dc51ba
commit
f2749f693f
@ -30,7 +30,11 @@ export const InboxContentRoot: FC<TInboxContentRoot> = observer((props) => {
|
|||||||
: null,
|
: null,
|
||||||
workspaceSlug && projectId && inboxIssueId
|
workspaceSlug && projectId && inboxIssueId
|
||||||
? () => fetchInboxIssueById(workspaceSlug, projectId, inboxIssueId)
|
? () => fetchInboxIssueById(workspaceSlug, projectId, inboxIssueId)
|
||||||
: null
|
: null,
|
||||||
|
{
|
||||||
|
revalidateOnFocus: false,
|
||||||
|
revalidateIfStale: false,
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const isEditable = !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;
|
const isEditable = !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;
|
||||||
|
Loading…
Reference in New Issue
Block a user