mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Add dupes to bad labels to make it clear these are not all errors
This commit is contained in:
parent
799f06f873
commit
b9d7c15883
1 changed files with 7 additions and 7 deletions
|
|
@ -38,7 +38,7 @@ struct WidgetsLiveActivity: Widget {
|
|||
.fixedSize()
|
||||
Spacer()
|
||||
}
|
||||
Text("\(context.state.nodesOnline) online")
|
||||
Text("\(context.state.nodesOnline) nodes online")
|
||||
.font(.caption)
|
||||
.foregroundStyle(.secondary)
|
||||
.fixedSize()
|
||||
|
|
@ -66,15 +66,15 @@ struct WidgetsLiveActivity: Widget {
|
|||
.fixedSize()
|
||||
Spacer()
|
||||
}
|
||||
Text("Sent \(context.state.sentPackets)")
|
||||
Text("Sent: \(context.state.sentPackets)")
|
||||
.font(.caption)
|
||||
.foregroundStyle(.secondary)
|
||||
.fixedSize()
|
||||
Text("Received \(context.state.receivedPackets)")
|
||||
Text("Received: \(context.state.receivedPackets)")
|
||||
.font(.caption)
|
||||
.foregroundStyle(.secondary)
|
||||
.fixedSize()
|
||||
Text("Bad \(context.state.badReceivedPackets)")
|
||||
Text("Dupe / Bad: \(context.state.badReceivedPackets)")
|
||||
.font(.caption)
|
||||
.foregroundStyle(.secondary)
|
||||
.fixedSize()
|
||||
|
|
@ -196,19 +196,19 @@ struct NodeInfoView: View {
|
|||
.foregroundStyle(.secondary)
|
||||
.opacity(isLuminanceReduced ? 0.8 : 1.0)
|
||||
.fixedSize()
|
||||
Text("Packets Sent \(sentPackets)")
|
||||
Text("Packets Sent: \(sentPackets)")
|
||||
.font(.caption)
|
||||
.fontWeight(.medium)
|
||||
.foregroundStyle(.secondary)
|
||||
.opacity(isLuminanceReduced ? 0.8 : 1.0)
|
||||
.fixedSize()
|
||||
Text("Packets Received \(receivedPackets)")
|
||||
Text("Packets Received: \(receivedPackets)")
|
||||
.font(.caption)
|
||||
.fontWeight(.medium)
|
||||
.foregroundStyle(.secondary)
|
||||
.opacity(isLuminanceReduced ? 0.8 : 1.0)
|
||||
.fixedSize()
|
||||
Text("Bad Packets Received \(badReceivedPackets)")
|
||||
Text("Dupe / Bad Packets: \(badReceivedPackets)")
|
||||
.font(.caption)
|
||||
.fontWeight(.medium)
|
||||
.foregroundStyle(.secondary)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue