[WEB-749] fix: rendering empty states with "showEmptyGroup" filter in issue grouping (#3954)

* fix: Fixed show empty states in groupBy and subGroupBy in kanban

* lint: lint issue resolved
This commit is contained in:
guru_sainath 2024-03-13 16:59:12 +05:30 committed by GitHub
parent 6ec9c64f7c
commit 898cf98be3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 141 additions and 71 deletions

View file

@ -37,7 +37,7 @@ interface IKanbanGroup {
viewId?: string;
disableIssueCreation?: boolean;
canEditProperties: (projectId: string | undefined) => boolean;
groupByVisibilityToggle: boolean;
groupByVisibilityToggle?: boolean;
scrollableContainerRef?: MutableRefObject<HTMLDivElement | null>;
isDragStarted?: boolean;
}