diff --git a/deepview-explore/react-ui/src/sections/CarbonEquivalent.js b/deepview-explore/react-ui/src/sections/CarbonEquivalent.js index 7e1fae5..4216bf3 100644 --- a/deepview-explore/react-ui/src/sections/CarbonEquivalent.js +++ b/deepview-explore/react-ui/src/sections/CarbonEquivalent.js @@ -27,7 +27,7 @@ const CarbonEquivalent = ({ carbonData }) => { // Convert to kgs if we have small values if (largestValue < 1) { carbonData.map(value => value.carbonEmissions*1000) - XAxisLabel = "C02e (kgs)" + XAxisLabel = "CO2e (kgs)" } carbonData.sort((a, b) => a.carbonEmissions - b.carbonEmissions);