diff --git a/apps/web/public/locales/en/common.json b/apps/web/public/locales/en/common.json index 30cab6c3a..3c5fced9d 100644 --- a/apps/web/public/locales/en/common.json +++ b/apps/web/public/locales/en/common.json @@ -390,11 +390,11 @@ } }, "chart": { - "total-feedback-trend": { + "feedback-trend": { "title": "Feedback Trend", "description": "Display the trend of feedback creation over a specific period of time." }, - "total-issue-trend": { + "issue-trend": { "title": "Issue Trend", "description": "Display the trend of Issue creation over a specific period of time." }, @@ -406,7 +406,7 @@ "title": "Top Issue", "description": "Display the top issues with a large number of count." }, - "issue-trend": { + "issue-comparison": { "title": "Issue comparison", "description": "Compare and display the trend of feedback creation for selected issues." } diff --git a/apps/web/public/locales/ja/common.json b/apps/web/public/locales/ja/common.json index 90d757d3c..bff611db1 100644 --- a/apps/web/public/locales/ja/common.json +++ b/apps/web/public/locales/ja/common.json @@ -390,14 +390,13 @@ } }, "chart": { - "total-feedback-trend": { + "feedback-trend": { "title": "フィードバック生成推移", "description": "特定の期間のフィードバック生成の推移を示します。" }, - "total-issue-trend": { + "issue-trend": { "title": "イシュー生成推移", - "description": "特定期間のイシュー作成推移を示します。", - "issue-count": "イシュー生成数" + "description": "特定期間のイシュー作成推移を示します。" }, "issue-status-count": { "title": "イシュー現況", @@ -407,7 +406,7 @@ "title": "上位イシュー", "description": "フィードバック数が多い上位イシューを表示します。" }, - "issue-trend": { + "issue-comparison": { "title": "イシュー比較", "description": "選択したイシューのフィードバック生成推移を比較して表示します。" } diff --git a/apps/web/public/locales/ko/common.json b/apps/web/public/locales/ko/common.json index 940c194a7..232fbdc3a 100644 --- a/apps/web/public/locales/ko/common.json +++ b/apps/web/public/locales/ko/common.json @@ -390,11 +390,11 @@ } }, "chart": { - "total-feedback-trend": { + "feedback-trend": { "title": "피드백 생성 추이", "description": "특정 기간의 피드백 생성 추이를 보여줍니다." }, - "total-issue-trend": { + "issue-trend": { "title": "이슈 생성 추이", "description": "특정 기간의 이슈 생성 추이를 보여줍니다." }, @@ -406,7 +406,7 @@ "title": "상위 이슈", "description": "피드백 개수가 많은 상위 이슈를 보여줍니다." }, - "issue-trend": { + "issue-comparison": { "title": "이슈 비교", "description": "선택한 이슈의 피드백 생성 추이를 비교해서 보여줍니다." } diff --git a/apps/web/src/components/charts/LineChart.tsx b/apps/web/src/components/charts/LineChart.tsx index 2e1dc2a8d..3a767fe9a 100644 --- a/apps/web/src/components/charts/LineChart.tsx +++ b/apps/web/src/components/charts/LineChart.tsx @@ -65,6 +65,7 @@ const LineChart: React.FC = ({ className="font-10-regular text-secondary" tickSize={15} tickLine={false} + interval="equidistantPreserveStart" /> v.toLocaleString()} diff --git a/apps/web/src/components/layouts/Header/LocaleSelectBox.tsx b/apps/web/src/components/layouts/Header/LocaleSelectBox.tsx index ed49152e2..9887dec73 100644 --- a/apps/web/src/components/layouts/Header/LocaleSelectBox.tsx +++ b/apps/web/src/components/layouts/Header/LocaleSelectBox.tsx @@ -48,7 +48,7 @@ const LocaleSelectBox: React.FC = () => { )} - + {router.locales ?.filter((v) => v !== 'default') .map((v) => ( diff --git a/apps/web/src/containers/dashboard/FeedbackLineChart.tsx b/apps/web/src/containers/dashboard/FeedbackLineChart.tsx index d338ed91f..b4d5b7547 100644 --- a/apps/web/src/containers/dashboard/FeedbackLineChart.tsx +++ b/apps/web/src/containers/dashboard/FeedbackLineChart.tsx @@ -87,8 +87,8 @@ const FeedbackLineChart: React.FC = (props) => { return ( = ({ from, projectId, to }) => { return ( = ({ from, projectId, to }) => { return (