diff --git a/frontend/src/containers/map/content/details/tables/global-regional/hooks.tsx b/frontend/src/containers/map/content/details/tables/global-regional/hooks.tsx index 90ef9f8a..5414e96e 100644 --- a/frontend/src/containers/map/content/details/tables/global-regional/hooks.tsx +++ b/frontend/src/containers/map/content/details/tables/global-regional/hooks.tsx @@ -294,8 +294,11 @@ export const useColumns = ( ), cell: ({ row }) => { const { global_contribution: value } = row.original; - if (!value) return t('no-data'); - const formattedValue = cellFormatter.percentage(locale, value); + if (value === undefined || value === null) return t('no-data'); + const formattedValue = cellFormatter.percentage(locale, value, { + displayPercentageSign: false, + displayZeroValue: false, + }); return {t('percentage', { percentage: formattedValue })}; }, },