From dde4c8f9c8d21455961f549215ea2b2bfb9fa35b Mon Sep 17 00:00:00 2001 From: Ben Follington <5009316+bfollington@users.noreply.github.com> Date: Tue, 13 Feb 2024 12:22:37 +1000 Subject: [PATCH] Move heart in notebook view --- .../Shared/Components/Common/EntryRow.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xcode/Subconscious/Shared/Components/Common/EntryRow.swift b/xcode/Subconscious/Shared/Components/Common/EntryRow.swift index 8e41f6b5..66d73992 100644 --- a/xcode/Subconscious/Shared/Components/Common/EntryRow.swift +++ b/xcode/Subconscious/Shared/Components/Common/EntryRow.swift @@ -36,12 +36,6 @@ struct EntryRow: View { .theme(base: highlight, slug: highlight) Spacer() - - if liked { - Image(systemName: "heart.fill") - .font(.caption) - .foregroundColor(highlight) - } Text( NiceDateFormatter.shared.string( @@ -51,6 +45,12 @@ struct EntryRow: View { ) .font(.subheadline) .foregroundColor(highlight) + + if liked { + Image(systemName: "heart.fill") + .font(.caption) + .foregroundColor(highlight) + } } .font(.callout) .lineLimit(1)