change(ui) - metric list item name casing

This commit is contained in:
Shekar Siri 2022-06-23 16:29:19 +02:00
parent 7b4a189588
commit c548cd7cbe

View file

@ -44,7 +44,7 @@ function MetricListItem(props: Props) {
<div className="w-8 h-8 rounded-full bg-tealx-lightest flex items-center justify-center mr-2">
<Icon name={getIcon(metric.metricType)} size="14" color="tealx" />
</div>
<Link to={`/metrics/${metric.metricId}`} className="link">
<Link to={`/metrics/${metric.metricId}`} className="link capitalize-first">
{metric.name}
</Link>
</div>