fix: v3 issues for the layouts (#2941)
* fix drag n drop exception error * fix peek overlay close buttons * fix project empty state view * fix cycle and module empty state view * add ai options to inbox issue creation * fix inbox filters for viewers * fix inbox filters for viewers for project * disable editing permission for members and viewers * define accurate types for drag and drop
This commit is contained in:
parent
f7fa4d8b65
commit
90ca459b4a
17 changed files with 290 additions and 147 deletions
|
|
@ -53,7 +53,7 @@ export const ProjectLayoutRoot: React.FC = observer(() => {
|
|||
</div>
|
||||
) : (
|
||||
<>
|
||||
{Object.keys(getIssues ?? {}).length == 0 ? (
|
||||
{Object.keys(getIssues ?? {}).length == 0 && !loader ? (
|
||||
<ProjectEmptyState />
|
||||
) : (
|
||||
<div className="w-full h-full relative overflow-auto">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue