diff --git a/swift/apple/FirezoneKit/Sources/FirezoneKit/Views/MenuBar.swift b/swift/apple/FirezoneKit/Sources/FirezoneKit/Views/MenuBar.swift
index c27a09cf7..a0fc4959f 100644
--- a/swift/apple/FirezoneKit/Sources/FirezoneKit/Views/MenuBar.swift
+++ b/swift/apple/FirezoneKit/Sources/FirezoneKit/Views/MenuBar.swift
@@ -543,7 +543,7 @@ public final class MenuBar: NSObject, ObservableObject {
private func nonInternetResourceHeader(resource: Resource) -> NSMenu {
let subMenu = NSMenu()
- // AddressDescription first -- will be most common action
+ // Show addressDescription first if it's present
let resourceAddressDescriptionItem = NSMenuItem()
if let addressDescription = resource.addressDescription {
resourceAddressDescriptionItem.title = addressDescription
@@ -554,11 +554,10 @@ public final class MenuBar: NSObject, ObservableObject {
resourceAddressDescriptionItem.action = #selector(resourceURLTapped(_:))
resourceAddressDescriptionItem.toolTip = "Click to open"
- // TODO: Expose markdown support? Blocked by Tauri clients.
// Using Markdown here only to highlight the URL
- resourceAddressDescriptionItem.attributedTitle = try? NSAttributedString(markdown: "**[\(addressDescription)](\(addressDescription))**")
+ resourceAddressDescriptionItem.attributedTitle = try? NSAttributedString(markdown: "[\(addressDescription)](\(addressDescription))")
} else {
- resourceAddressDescriptionItem.attributedTitle = try? NSAttributedString(markdown: "**\(addressDescription)**")
+ resourceAddressDescriptionItem.title = addressDescription
resourceAddressDescriptionItem.action = #selector(resourceValueTapped(_:))
resourceAddressDescriptionItem.toolTip = "Click to copy"
}
diff --git a/website/src/components/Changelog/Apple.tsx b/website/src/components/Changelog/Apple.tsx
index caf80ca7c..f387c54e4 100644
--- a/website/src/components/Changelog/Apple.tsx
+++ b/website/src/components/Changelog/Apple.tsx
@@ -9,6 +9,16 @@ export default function Apple() {
href="https://apps.apple.com/us/app/firezone/id6443661826"
title="macOS / iOS"
>
+ {/*
+
+
+
+ Fixes a bug where the addressDescription wasn't fully displayed in the macOS
+ menu bar if it exceeded a certain length.
+
+
+
+ */}