Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpopus committed May 25, 2023
1 parent 9254e19 commit f2f467a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Aggregates/AggregateDataWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const AggregateDataWidget: React.FC<Props> = ({ options, metricsMap }) => {

const itemLabel = item.label;

const label = metricsMap?.[itemLabel] ?? itemLabel;
const label = metricsMap?.[itemLabel]?.label ?? itemLabel;

return (
<li
Expand Down

0 comments on commit f2f467a

Please sign in to comment.