@@ -71,7 +69,7 @@ export const GanttChartBlocks: FC<{
{blocks &&
blocks.length > 0 &&
blocks.map((block: any, _idx: number) => (
-
+
{sidebarBlockRender(block?.data)}
))}
diff --git a/apps/app/components/gantt-chart/chart/index.tsx b/apps/app/components/gantt-chart/chart/index.tsx
index a1b80ef84f..6724c35526 100644
--- a/apps/app/components/gantt-chart/chart/index.tsx
+++ b/apps/app/components/gantt-chart/chart/index.tsx
@@ -214,7 +214,7 @@ export const ChartViewRoot: FC
= ({
{/* chart title */}
diff --git a/apps/app/components/gantt-chart/views/month-view.ts b/apps/app/components/gantt-chart/views/month-view.ts
index df537ba5eb..7211a45ebe 100644
--- a/apps/app/components/gantt-chart/views/month-view.ts
+++ b/apps/app/components/gantt-chart/views/month-view.ts
@@ -184,7 +184,7 @@ export const getMonthChartItemPositionWidthInMonth = (chartData: ChartDataType,
diffMonths -= startDate.getMonth();
diffMonths += itemStartDate.getMonth();
- scrollPosition = scrollPosition + diffMonths - 1;
+ scrollPosition = scrollPosition + diffMonths;
// position code ends
// width code starts
diff --git a/apps/app/components/issues/gantt-chart.tsx b/apps/app/components/issues/gantt-chart.tsx
index 5e79822c52..b35d4a7499 100644
--- a/apps/app/components/issues/gantt-chart.tsx
+++ b/apps/app/components/issues/gantt-chart.tsx
@@ -32,12 +32,12 @@ export const IssueGanttChartView: FC
= ({}) => {
// rendering issues on gantt card
const GanttBlockView = ({ data }: any) => (
-
+
-
diff --git a/apps/app/components/modules/gantt-chart.tsx b/apps/app/components/modules/gantt-chart.tsx
index edc24cfc9c..0d11da2c06 100644
--- a/apps/app/components/modules/gantt-chart.tsx
+++ b/apps/app/components/modules/gantt-chart.tsx
@@ -32,12 +32,12 @@ export const ModuleIssuesGanttChartView: FC
= ({}) => {
// rendering issues on gantt card
const GanttBlockView = ({ data }: any) => (
-
+
-
diff --git a/apps/app/components/modules/modules-list-gantt-chart.tsx b/apps/app/components/modules/modules-list-gantt-chart.tsx
index c6fbf329f2..edff17a952 100644
--- a/apps/app/components/modules/modules-list-gantt-chart.tsx
+++ b/apps/app/components/modules/modules-list-gantt-chart.tsx
@@ -27,12 +27,12 @@ export const ModulesListGanttChartView: FC
= ({ modules }) => {
// rendering issues on gantt card
const GanttBlockView = ({ data }: { data: IModule }) => (
-
+
s.value === data.status)?.color }}
/>
-
diff --git a/apps/app/components/views/gantt-chart.tsx b/apps/app/components/views/gantt-chart.tsx
index dbe71fae08..461f468357 100644
--- a/apps/app/components/views/gantt-chart.tsx
+++ b/apps/app/components/views/gantt-chart.tsx
@@ -32,12 +32,12 @@ export const ViewIssuesGanttChartView: FC
= ({}) => {
// rendering issues on gantt card
const GanttBlockView = ({ data }: any) => (
-
+
-
From e5f6be54e0f3fe62579865a96b75b70e2d826dda Mon Sep 17 00:00:00 2001
From: Vihar Kurama
Date: Sat, 20 May 2023 23:30:05 +0530
Subject: [PATCH 3/3] fix: updated discord link on readme (#1101)
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index a7a23d7c50..827a2b1465 100644
--- a/README.md
+++ b/README.md
@@ -135,7 +135,7 @@ To see how to Contribute, visit [here](https://github.com/makeplane/plane/blob/m
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/q9HKAdau).
+To chat with other community members you can join the [Plane Discord](https://discord.com/invite/A92xrEGCge).
Our [Code of Conduct](https://github.com/makeplane/plane/blob/master/CODE_OF_CONDUCT.md) applies to all Plane community channels.