fix: bugs & improvements (#2998)
* fix: create more toggle in update issue modal * fix: spreadsheet estimate column hide * fix: flickering in all the layouts * fix: logs
This commit is contained in:
parent
be2cf2e842
commit
97bc153ef9
6 changed files with 27 additions and 18 deletions
|
|
@ -39,13 +39,13 @@ export const ProjectLayoutRoot: React.FC = observer(() => {
|
|||
<div className="relative w-full h-full flex flex-col overflow-hidden">
|
||||
<ProjectAppliedFiltersRoot />
|
||||
|
||||
{loader === "init-loader" ? (
|
||||
{loader === "init-loader" || !getIssues ? (
|
||||
<div className="w-full h-full flex justify-center items-center">
|
||||
<Spinner />
|
||||
</div>
|
||||
) : (
|
||||
<>
|
||||
{Object.keys(getIssues ?? {}).length == 0 && !loader ? (
|
||||
{Object.keys(getIssues ?? {}).length == 0 ? (
|
||||
<ProjectEmptyState />
|
||||
) : (
|
||||
<div className="w-full h-full relative overflow-auto">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue