mirror of
https://github.com/meshtastic/Meshtastic-Apple.git
synced 2026-04-20 22:13:56 +00:00
Add pki info to message context menu
This commit is contained in:
parent
d175f960cd
commit
1942f0e2dd
1 changed files with 4 additions and 0 deletions
|
|
@ -15,6 +15,10 @@ struct MessageContextMenuItems: View {
|
|||
VStack {
|
||||
if message.pkiEncrypted {
|
||||
Label("Encrypted", systemImage: "lock")
|
||||
Text("Public Key")
|
||||
Text(message.publicKey?.base64EncodedString() ?? "No Key")
|
||||
.allowsTightening(true)
|
||||
.monospaced()
|
||||
}
|
||||
Text("channel") + Text(": \(message.channel)")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue