From f553f0d900f39f75c2d3f11441c75dff4cbba8a1 Mon Sep 17 00:00:00 2001 From: systemBlue Date: Thu, 4 Jun 2026 08:57:26 -0400 Subject: [PATCH] fix: apply the compact row layout to merged notifications too --- .../MergedNotificationsOverviewView.swift | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Forji/Forji/Views/MergedNotificationsOverviewView.swift b/Forji/Forji/Views/MergedNotificationsOverviewView.swift index 64476c2..ab6900f 100644 --- a/Forji/Forji/Views/MergedNotificationsOverviewView.swift +++ b/Forji/Forji/Views/MergedNotificationsOverviewView.swift @@ -278,13 +278,17 @@ private struct MergedNotificationRow: View { } } - Text(notification.repository.fullName) - .font(.caption) - .foregroundStyle(.secondary) - - Text(formatRelativeDate(notification.updatedAt)) - .font(.caption) - .foregroundStyle(.secondary) + HStack(spacing: 4) { + Text(notification.repository.fullName) + .lineLimit(1) + .truncationMode(.middle) + Text("ยท") + .foregroundStyle(.tertiary) + Text(formatRelativeDate(notification.updatedAt)) + .fixedSize() + } + .font(.caption) + .foregroundStyle(.secondary) } Spacer() @@ -293,7 +297,6 @@ private struct MergedNotificationRow: View { Circle() .fill(.blue) .frame(width: 10, height: 10) - .glassEffect(.regular.tint(.blue)) .padding(.top, 6) } }