diff --git a/apps/app/components/core/filters/issues-view-filter.tsx b/apps/app/components/core/filters/issues-view-filter.tsx index 946edab09..c1861c2c1 100644 --- a/apps/app/components/core/filters/issues-view-filter.tsx +++ b/apps/app/components/core/filters/issues-view-filter.tsx @@ -186,6 +186,8 @@ export const IssuesFilterView: React.FC = () => { GROUP_BY_OPTIONS.find((option) => option.key === groupByProperty) ?.name ?? "Select" } + className="w-28" + buttonClassName="w-full" > {GROUP_BY_OPTIONS.map((option) => { if (issueView === "kanban" && option.key === null) return null; @@ -209,6 +211,8 @@ export const IssuesFilterView: React.FC = () => { ORDER_BY_OPTIONS.find((option) => option.key === orderBy)?.name ?? "Select" } + className="w-28" + buttonClassName="w-full" > {ORDER_BY_OPTIONS.map((option) => groupByProperty === "priority" && option.key === "priority" ? null : ( @@ -233,6 +237,8 @@ export const IssuesFilterView: React.FC = () => { FILTER_ISSUE_OPTIONS.find((option) => option.key === filters.type) ?.name ?? "Select" } + className="w-28" + buttonClassName="w-full" > {FILTER_ISSUE_OPTIONS.map((option) => ( { <>

Show sub-issues

- setShowSubIssues(!showSubIssues)} - /> +
+ setShowSubIssues(!showSubIssues)} + /> +

Show empty states

- setShowEmptyGroups(!showEmptyGroups)} - /> +
+ setShowEmptyGroups(!showEmptyGroups)} + /> +