From 1ea72440222b0c1407533d62ce753c455ae4d9cd Mon Sep 17 00:00:00 2001 From: biplavbarua Date: Tue, 30 Dec 2025 13:19:01 +0530 Subject: [PATCH] feat(constants): enable sort by due date in timeline view Added 'target_date' to the order_by options in the Gantt chart layout configuration. This enables users to sort items by Due Date in the Timeline View. --- packages/constants/src/issue/filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/constants/src/issue/filter.ts b/packages/constants/src/issue/filter.ts index 126f886092c..0d584d8a39f 100644 --- a/packages/constants/src/issue/filter.ts +++ b/packages/constants/src/issue/filter.ts @@ -261,7 +261,7 @@ export const ISSUE_DISPLAY_FILTERS_BY_PAGE: TIssueFiltersToDisplayByPageType = { gantt_chart: { display_properties: ["key", "issue_type"], display_filters: { - order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"], + order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority", "target_date"], type: ["active", "backlog"], }, extra_options: {