@@ -498,8 +498,8 @@ export function SideMenu({
498498 < SideMenuItem
499499 name = "Metrics"
500500 icon = { BarChart2Icon }
501- activeIconColor = "text-purple-500 "
502- inactiveIconColor = "text-purple-500 "
501+ activeIconColor = "text-metrics "
502+ inactiveIconColor = "text-metrics "
503503 to = { v3BuiltInDashboardPath ( organization , project , environment , "overview" ) }
504504 data-action = "metrics-overview"
505505 isCollapsed = { isCollapsed }
@@ -517,8 +517,8 @@ export function SideMenu({
517517 key = { dashboard . friendlyId }
518518 name = { dashboard . title }
519519 icon = { LineChartIcon }
520- activeIconColor = "text-purple-500 "
521- inactiveIconColor = "text-purple-500 "
520+ activeIconColor = "text-customDashboards "
521+ inactiveIconColor = "text-customDashboards "
522522 to = { v3CustomDashboardPath ( organization , project , environment , dashboard ) }
523523 isCollapsed = { isCollapsed }
524524 />
@@ -1019,8 +1019,7 @@ function CreateDashboardButton({
10191019
10201020 const isAtLimit = limits . used >= limits . limit ;
10211021 const planLimits = ( plan ?. v3Subscription ?. plan ?. limits as any ) ?. metricDashboards ;
1022- const canExceed =
1023- typeof planLimits === "object" && planLimits . canExceed === true ;
1022+ const canExceed = typeof planLimits === "object" && planLimits . canExceed === true ;
10241023 const canUpgrade = plan ?. v3Subscription ?. plan && ! canExceed ;
10251024
10261025 const formAction = `/resources/orgs/${ organization . slug } /projects/${ project . slug } /env/${ environment . slug } /dashboards/create` ;
0 commit comments