mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Format SNR on messages
This commit is contained in:
parent
441a302f6d
commit
6a5a12d246
2 changed files with 2 additions and 2 deletions
|
|
@ -106,7 +106,7 @@ struct ChannelMessageList: View {
|
|||
}
|
||||
if !currentUser {
|
||||
VStack {
|
||||
Text("SNR \(String(format: "%.2f", position.snr)) dB")
|
||||
Text("SNR \(String(format: "%.2f", message.snr)) dB")
|
||||
}
|
||||
}
|
||||
if currentUser && message.receivedACK {
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ struct UserMessageList: View {
|
|||
}
|
||||
if !currentUser {
|
||||
VStack {
|
||||
Text("SNR \(String(format: "%.2f", position.snr)) dB")
|
||||
Text("SNR \(String(format: "%.2f", message.snr)) dB")
|
||||
}
|
||||
}
|
||||
if currentUser && message.receivedACK {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue