From fe6dddecf9f2480e3ee44ec099e05de1f20c5e0d Mon Sep 17 00:00:00 2001 From: tigerenwork Date: Mon, 29 Jun 2026 20:57:11 +0800 Subject: [PATCH] fix: move customer between status and age in bug row --- Sources/Views/MenuBar/BugRow.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Sources/Views/MenuBar/BugRow.swift b/Sources/Views/MenuBar/BugRow.swift index 3497369..6ece593 100644 --- a/Sources/Views/MenuBar/BugRow.swift +++ b/Sources/Views/MenuBar/BugRow.swift @@ -21,6 +21,11 @@ struct BugRow: View { } HStack(spacing: 8) { StatusPill(status: bug.status) + if let customer = bug.customer { + Text(customer) + .font(.caption2) + .foregroundStyle(.blue.opacity(0.8)) + } Text(ageString(bug.age)) .font(.caption2) .foregroundStyle(.secondary) @@ -29,11 +34,6 @@ struct BugRow: View { .font(.caption2) .foregroundStyle(.secondary) } - if let customer = bug.customer { - Text(customer) - .font(.caption2) - .foregroundStyle(.blue.opacity(0.8)) - } } }