improvement: refactored issue grouping logic to access MobX store directly (#6134)

* improvement: refactored issue grouping logic to access MobX store directly

* chore: minor updates
This commit is contained in:
Prateek Shourya 2024-12-11 15:14:15 +05:30 committed by GitHub
parent 5a9ae66680
commit 0ac68f2731
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 172 additions and 275 deletions

View file

@ -216,7 +216,7 @@ export type GroupByColumnTypes =
export interface IGroupByColumn {
id: string;
name: string;
icon: ReactElement | undefined;
icon?: ReactElement | undefined;
payload: Partial<TIssue>;
isDropDisabled?: boolean;
dropErrorMessage?: string;