diff --git a/apps/app/components/project/issues/BoardView/SingleBoard.tsx b/apps/app/components/project/issues/BoardView/SingleBoard.tsx index 5f81be602..d3fca633e 100644 --- a/apps/app/components/project/issues/BoardView/SingleBoard.tsx +++ b/apps/app/components/project/issues/BoardView/SingleBoard.tsx @@ -159,17 +159,6 @@ const SingleBoard: React.FC = ({ > - @@ -254,14 +243,14 @@ const SingleBoard: React.FC = ({ {childIssue.target_date && ( {childIssue.target_date < new Date().toISOString() - ? `Target date has passed by ${findHowManyDaysLeft( + ? `Due date has passed by ${findHowManyDaysLeft( childIssue.target_date )} days` : findHowManyDaysLeft(childIssue.target_date) <= 3 - ? `Target date is in ${findHowManyDaysLeft( + ? `Due date is in ${findHowManyDaysLeft( childIssue.target_date )} days` - : "Target date"} + : "Due date"} )} diff --git a/apps/app/pages/projects/[projectId]/issues/index.tsx b/apps/app/pages/projects/[projectId]/issues/index.tsx index 2c0f555d4..62cd3cab6 100644 --- a/apps/app/pages/projects/[projectId]/issues/index.tsx +++ b/apps/app/pages/projects/[projectId]/issues/index.tsx @@ -44,8 +44,8 @@ const groupByOptions: Array<{ name: string; key: NestedKeyOf | null }> = ]; const orderByOptions: Array<{ name: string; key: NestedKeyOf }> = [ - { name: "Created", key: "created_at" }, - { name: "Update", key: "updated_at" }, + { name: "Last created", key: "created_at" }, + { name: "Last updated", key: "updated_at" }, { name: "Priority", key: "priority" }, ];