chore: group by assignees option for project issues (#1957)
* dev: group by assignees option for project issues * fix: no assignee title --------- Co-authored-by: Aaryan Khandelwal <aaryan610@Aaryans-MacBook-Pro.local>
This commit is contained in:
parent
d18ac83909
commit
38934e8b99
7 changed files with 26 additions and 10 deletions
|
|
@ -156,7 +156,11 @@ export const MyIssuesViewOptions: React.FC = () => {
|
|||
>
|
||||
{GROUP_BY_OPTIONS.map((option) => {
|
||||
if (issueView === "kanban" && option.key === null) return null;
|
||||
if (option.key === "state" || option.key === "created_by")
|
||||
if (
|
||||
option.key === "state" ||
|
||||
option.key === "created_by" ||
|
||||
option.key === "assignees"
|
||||
)
|
||||
return null;
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue