diff --git a/README.md b/README.md index 67e66d8f4..bc3166313 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Coming soon. The Plane community can be found on GitHub Discussions, where you can ask questions, voice ideas, and share your projects. -To chat with other community members you can join the [Plane Discord](https://discord.com/invite/8SR2N9PAcJ). +To chat with other community members you can join the [Plane Discord](https://discord.com/invite/q9HKAdau). Our Code of Conduct applies to all Plane community channels. 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" }, ];