Skip to content

Commit 0ecb5e0

Browse files
committed
Fixed the PR Analytics route and the color fix for Execptional category.
1 parent dc23a5d commit 0ecb5e0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/components/PRAnalyticsDashboard/ReviewsInsight/PRQualityGraph.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function PRQualityGraph({ selectedTeams, qualityData }) {
3131
teamQualityData.Sufficient || 0,
3232
teamQualityData.Exceptional || 0,
3333
],
34-
backgroundColor: ['#DC3545', '#FFC107', '#28A745', '#007BFF'],
34+
backgroundColor: ['#DC3545', '#FFC107', '#28A745', '#5940CB'],
3535
hoverOffset: 4,
3636
},
3737
],

src/routes.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,8 @@ export default (
705705
exact
706706
component={ToolsAvailabilityPage}
707707
/>
708+
{/* PR Analytics Dashboard */}
709+
<Route path="/pull-request-analytics/reviews-insight" component={ReviewsInsight} />
708710
{/* Community Portal Routes */}
709711
<CPProtectedRoute path="/communityportal" exact component={CPDashboard} />
710712
<Route path="/communityportal/login" component={CPLogin} />

0 commit comments

Comments
 (0)