Add empty state when view is not available (#5002)

This commit is contained in:
rahulramesha 2024-07-02 16:21:28 +05:30 committed by GitHub
parent b591203da6
commit d9d62c2d5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 30 additions and 4 deletions

View file

@ -34,7 +34,7 @@ const GlobalViewIssuesPage = observer(() => {
<div className="flex h-full w-full flex-col border-b border-custom-border-300">
<GlobalViewsHeader />
{globalViewId && <GlobalViewsAppliedFiltersRoot globalViewId={globalViewId.toString()} />}
<AllIssueLayoutRoot />
<AllIssueLayoutRoot isDefaultView={!!defaultView} />
</div>
</div>
</>