fix: resolved rendering issues in list and kanban layout when we apply group-by filter (#4028)

This commit is contained in:
guru_sainath 2024-03-21 20:47:36 +05:30 committed by GitHub
parent 991b8e7703
commit 86ae79f851
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 25 additions and 15 deletions

View file

@ -25,7 +25,7 @@ import {
} from "@/hooks/store";
// types
// parent components
import { getGroupByColumns } from "../utils";
import { getGroupByColumns, isWorkspaceLevel } from "../utils";
// components
import { KanbanStoreType } from "./base-kanban-root";
import { HeaderGroupByCard } from "./headers/group-by-card";
@ -102,7 +102,9 @@ const GroupByKanBan: React.FC<IGroupByKanBan> = observer((props) => {
moduleInfo,
label,
projectState,
member
member,
true,
isWorkspaceLevel(storeType)
);
if (!list) return null;