mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Fix Fahrenheit / celsius display on telemetry log
This commit is contained in:
parent
61263382d8
commit
1e4d39062e
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ struct TelemetryLog: View {
|
|||
.font(.title)
|
||||
|
||||
|
||||
let tempReadingType = (!(node.telemetryConfig?.environmentDisplayFahrenheit ?? true)) ? "°C" : "°F"
|
||||
let tempReadingType = (!(node.telemetryConfig?.environmentDisplayFahrenheit ?? false)) ? "°C" : "°F"
|
||||
|
||||
if tel.temperature > 0 {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue