fix: resolved rendering issues in list and kanban layout when we apply group-by filter (#4028)
This commit is contained in:
parent
991b8e7703
commit
86ae79f851
7 changed files with 25 additions and 15 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue