Skip to content

Commit

Permalink
fix: use correct data for indicator type
Browse files Browse the repository at this point in the history
  • Loading branch information
edoardo committed Nov 11, 2024
1 parent ee88b99 commit 84c5363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DataDimension/Info/IndicatorInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const IndicatorInfo = ({ id, displayNameProp }) => {
</tr>
<tr>
<th>{i18n.t('Indicator type')}</th>
<td>{`${data?.indicator.displayName}, ${data?.indicator.factor}`}</td>
<td>{`${data?.indicator.indicatorType.displayName}, ${data?.indicator.indicatorType.factor}`}</td>
</tr>
{data?.indicator.decimals && (
<tr>
Expand Down

0 comments on commit 84c5363

Please sign in to comment.