From 9ed1dc1fcb9f7bf8bc633f1cef8e88ab23904d49 Mon Sep 17 00:00:00 2001 From: vamsi Date: Wed, 7 Dec 2022 02:19:34 +0530 Subject: [PATCH 1/2] docs: update the discord invite link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. From d8625b332a289c9ab3a166a3ebb483c579843d9f Mon Sep 17 00:00:00 2001 From: vamsi Date: Wed, 7 Dec 2022 02:54:40 +0530 Subject: [PATCH 2/2] content: minor changes in view dropdown and remove edit icon in kanban view --- .../project/issues/BoardView/SingleBoard.tsx | 17 +++-------------- .../pages/projects/[projectId]/issues/index.tsx | 4 ++-- 2 files changed, 5 insertions(+), 16 deletions(-) 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" }, ];