Skip to content

Commit

Permalink
change translation key for pm sensors #459
Browse files Browse the repository at this point in the history
  • Loading branch information
io53 committed Nov 26, 2024
1 parent c98d3a4 commit af4d51b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/UnitHelper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,31 +110,31 @@ const unitHelper = {
graphable: true
},
"pm1p0": {
label: "pm1.0",
label: "pm10",
unit: "µg/m³",
value: (value) => value,
fromUser: (value) => value,
decimals: 1,
graphable: true
},
"pm2p5": {
label: "pm2.5",
label: "pm25",
unit: "µg/m³",
value: (value) => value,
fromUser: (value) => value,
decimals: 1,
graphable: true
},
"pm4p0": {
label: "pm4.0",
label: "pm40",
unit: "µg/m³",
value: (value) => value,
fromUser: (value) => value,
decimals: 1,
graphable: true
},
"pm10p0": {
label: "pm10.0",
label: "pm100",
unit: "µg/m³",
value: (value) => value,
fromUser: (value) => value,
Expand Down

0 comments on commit af4d51b

Please sign in to comment.