Skip to content

Commit f2f467a

Browse files
committed
Fix build
1 parent 9254e19 commit f2f467a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Aggregates/AggregateDataWidget.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ const AggregateDataWidget: React.FC<Props> = ({ options, metricsMap }) => {
9999

100100
const itemLabel = item.label;
101101

102-
const label = metricsMap?.[itemLabel] ?? itemLabel;
102+
const label = metricsMap?.[itemLabel]?.label ?? itemLabel;
103103

104104
return (
105105
<li

0 commit comments

Comments
 (0)