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)) - } } }