chore: issue filters refactor (#6742)

* chore: issue filters refactor

* chore: update helper funciton implementation

* chore: removed redundant components
This commit is contained in:
Vamsi Krishna 2025-03-17 15:45:34 +05:30 committed by GitHub
parent 1bf683e044
commit d4991b9a48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 58 additions and 50 deletions

View file

@ -0,0 +1,4 @@
import { TIssue } from "@plane/types";
import { getIssueIds } from "@/store/issue/helpers/base-issues-utils";
export const workItemSortWithOrderByExtended = (array: TIssue[], key?: string) => getIssueIds(array);