From ee9a7c018eeb5592ae51f53e81b6734f4abcb35e Mon Sep 17 00:00:00 2001 From: Krishna Kumar Date: Sat, 23 May 2026 01:12:48 -0500 Subject: [PATCH] =?UTF-8?q?experiment(BookmarkRow):=20show=20dateAdded=20r?= =?UTF-8?q?elative=20time=20inline=20with=20domain=20=E2=80=94=20'domain?= =?UTF-8?q?=20=C2=B7=202=20days=20ago'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marks/Views/BookmarkRow.swift | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Marks/Views/BookmarkRow.swift b/Marks/Views/BookmarkRow.swift index 001b740..aaf1022 100644 --- a/Marks/Views/BookmarkRow.swift +++ b/Marks/Views/BookmarkRow.swift @@ -28,9 +28,13 @@ struct BookmarkRow: View { .lineLimit(2) .fixedSize(horizontal: false, vertical: true) - Text(bookmark.domain) - .font(.system(size: 13)) - .foregroundStyle(.tertiary) + HStack(spacing: 4) { + Text(bookmark.domain) + Text("ยท") + Text(bookmark.dateAdded, style: .relative) + } + .font(.system(size: 13)) + .foregroundStyle(.tertiary) } Spacer()