diff --git a/Meshtastic/Views/Helpers/MQTTIcon.swift b/Meshtastic/Views/Helpers/MQTTIcon.swift index 82af2699..171f743e 100644 --- a/Meshtastic/Views/Helpers/MQTTIcon.swift +++ b/Meshtastic/Views/Helpers/MQTTIcon.swift @@ -25,11 +25,11 @@ struct MQTTIcon: View { .imageScale(.large) .foregroundColor(connected ? .green : .gray) .symbolRenderingMode(.hierarchical) - }.popover(isPresented: self.$isPopoverOpen, content: { + }.popover(isPresented: self.$isPopoverOpen, arrowEdge: .bottom, content: { VStack(spacing: 0.5) { - Text("Subscribed to topic: " + topic) + Text("Topic: " + topic) .padding(20) - Button("Close", action: { self.isPopoverOpen = false }).padding([.bottom], 20) + Button("close", action: { self.isPopoverOpen = false }).padding([.bottom], 20) } .presentationCompactAdaptation(.popover) })