From 274e368907f67fe153265c693609bd602b0bbb36 Mon Sep 17 00:00:00 2001 From: Manoj Puttaswamy Date: Wed, 3 Jun 2026 17:45:17 -0500 Subject: [PATCH 1/3] "Fix: make Total Hours Bold" --- src/components/common/PieChart/ProjectPieChart.jsx | 2 +- src/components/common/PieChart/UserProjectPieChart.module.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/common/PieChart/ProjectPieChart.jsx b/src/components/common/PieChart/ProjectPieChart.jsx index 93b4c2691e..3cf081085c 100644 --- a/src/components/common/PieChart/ProjectPieChart.jsx +++ b/src/components/common/PieChart/ProjectPieChart.jsx @@ -189,7 +189,7 @@ export default function UserProjectD3PieChart({ projectsData, darkMode }) { className={`${styles['data-total-value']} ${darkMode ? styles['text-light'] : ''}`} style={{ marginTop: 8, color: darkMode ? '#f5f5f5' : 'inherit' }} > - + Total Hours: {' '} {total.toFixed(2)} diff --git a/src/components/common/PieChart/UserProjectPieChart.module.css b/src/components/common/PieChart/UserProjectPieChart.module.css index 2c4c0362ca..49fb809731 100644 --- a/src/components/common/PieChart/UserProjectPieChart.module.css +++ b/src/components/common/PieChart/UserProjectPieChart.module.css @@ -220,6 +220,10 @@ color: inherit; } +.strong-text { + font-weight: bold; +} + .strong-text.text-light, .text-light strong, .text-light .strong-text { color:#f5f5f5 !important; } From 62b7f0805a302963a324beeb24a92af2b665b988 Mon Sep 17 00:00:00 2001 From: Manoj Puttaswamy Date: Wed, 3 Jun 2026 18:06:20 -0500 Subject: [PATCH 2/3] "fix: remove scrolling effect in Teams for Profile Page" --- .../UserProfile/TeamsAndProjects/UserTeamsTable.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/UserProfile/TeamsAndProjects/UserTeamsTable.jsx b/src/components/UserProfile/TeamsAndProjects/UserTeamsTable.jsx index 89054fa742..c3ecb8ba74 100644 --- a/src/components/UserProfile/TeamsAndProjects/UserTeamsTable.jsx +++ b/src/components/UserProfile/TeamsAndProjects/UserTeamsTable.jsx @@ -273,8 +273,8 @@ const UserTeamsTable = props => { )} -
- +
+
{props.role && ( From 0ffa63cc47fbd710e381ad3fb1c1a13a2e0d833c Mon Sep 17 00:00:00 2001 From: Manoj Puttaswamy Date: Thu, 4 Jun 2026 12:14:42 -0500 Subject: [PATCH 3/3] "fix: make Total hours bold in Projects Pie chart" --- src/components/common/PieChart/PieChart.jsx | 10 ++++++++-- src/components/common/PieChart/PieChart.module.css | 12 +++++++++++- .../common/PieChart/UserProjectPieChart.module.css | 4 ---- 3 files changed, 19 insertions(+), 7 deletions(-) diff --git a/src/components/common/PieChart/PieChart.jsx b/src/components/common/PieChart/PieChart.jsx index e457e6a1c0..c096ca2b47 100644 --- a/src/components/common/PieChart/PieChart.jsx +++ b/src/components/common/PieChart/PieChart.jsx @@ -225,8 +225,14 @@ export function PieChart({
-
- Total Hours: {totalHours.toFixed(2)} +
+ + Total Hours: + {' '} + {totalHours.toFixed(2)}
diff --git a/src/components/common/PieChart/PieChart.module.css b/src/components/common/PieChart/PieChart.module.css index 92039ce6f4..f7c9de2da5 100644 --- a/src/components/common/PieChart/PieChart.module.css +++ b/src/components/common/PieChart/PieChart.module.css @@ -166,4 +166,14 @@ div.pie-chart-legend-container { .pie-chart-legend-table td { padding: 8px 0; -} \ No newline at end of file +} + +.data-total-value { + font-weight: bold; + margin-top: 10px; + color: inherit; +} + +.strong-text.text-light, +.text-light strong, +.text-light .strong-text { color:#f5f5f5 !important; } \ No newline at end of file diff --git a/src/components/common/PieChart/UserProjectPieChart.module.css b/src/components/common/PieChart/UserProjectPieChart.module.css index 49fb809731..2c4c0362ca 100644 --- a/src/components/common/PieChart/UserProjectPieChart.module.css +++ b/src/components/common/PieChart/UserProjectPieChart.module.css @@ -220,10 +220,6 @@ color: inherit; } -.strong-text { - font-weight: bold; -} - .strong-text.text-light, .text-light strong, .text-light .strong-text { color:#f5f5f5 !important; }