Commit 4bb36d4b authored by Weiser's avatar Weiser
Browse files

fix

parent cabb31c9
...@@ -515,14 +515,14 @@ const Currentdata = (props) => { ...@@ -515,14 +515,14 @@ const Currentdata = (props) => {
} }
if (pressure) { if (pressure) {
if (units == "world") { if (units == "world") {
filterArray.push("temp_mb"); filterArray.push("pressure_mb");
} else { } else {
filterArray.push("pressure_in"); filterArray.push("pressure_in");
} }
} }
if (precip) { if (precip) {
if (units == "world") { if (units == "world") {
filterArray.push("temp_mm"); filterArray.push("precip_mm");
} else { } else {
filterArray.push("precip_in"); filterArray.push("precip_in");
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment