[WEB-2443] fix: role validation and code refactor (#5596)
* chore: delete cycle toast message updated * fix: view page empty state * fix: project settings automation * fix: intake delete action * fix: project label validation * fix: project label validation * fix: project state permission updated * chore: code refactor
This commit is contained in:
parent
5f1939cdeb
commit
441385fc95
13 changed files with 134 additions and 77 deletions
|
|
@ -25,7 +25,7 @@ const ProjectViewIssuesPage = observer(() => {
|
|||
const project = projectId ? getProjectById(projectId.toString()) : undefined;
|
||||
const pageTitle = project?.name && projectView?.name ? `${project?.name} - ${projectView?.name}` : undefined;
|
||||
|
||||
const { error } = useSWR(
|
||||
const { error, isLoading } = useSWR(
|
||||
workspaceSlug && projectId && viewId ? `VIEW_DETAILS_${viewId.toString()}` : null,
|
||||
workspaceSlug && projectId && viewId
|
||||
? () => fetchViewDetails(workspaceSlug.toString(), projectId.toString(), viewId.toString())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue