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