Remove excess focused field, add space to trace route text

This commit is contained in:
Garth Vander Houwen 2023-12-21 13:29:18 -08:00
parent 7df669f60b
commit d744b21be4
3 changed files with 1 additions and 3 deletions

View file

@ -669,7 +669,7 @@ class BLEManager: NSObject, CBPeripheralDelegate, MqttClientProxyManagerDelegate
if hopNode != nil {
hopNodes.append(traceRouteHop)
}
routeString += "\(hopNode?.user?.longName ?? "unknown".localized) -->"
routeString += "\(hopNode?.user?.longName ?? "unknown".localized) --> "
}
routeString += traceRoute?.node?.user?.longName ?? "unknown".localized
traceRoute?.routeText = routeString

View file

@ -241,7 +241,6 @@ struct ChannelMessageList: View {
}, secondaryButton: .cancel())
}
.onAppear {
self.focusedField = .messageText
if !message.read {
message.read = true
do {

View file

@ -218,7 +218,6 @@ struct UserMessageList: View {
}, secondaryButton: .cancel())
}
.onAppear {
self.focusedField = .messageText
if !message.read {
message.read = true
do {