From e9cd7898e7f57d56e0cbd76603864c3c36f2260c Mon Sep 17 00:00:00 2001 From: Jeroen Gordijn Date: Fri, 13 Mar 2026 21:40:29 +0000 Subject: [PATCH] fix: remove line-clamp-2 from HP card expanded summary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The High Priority (4★) card was truncating the summary text to 2 lines with ellipsis even when expanded, because line-clamp-2 was applied inside the expanded detail panel. The Featured (5★) tier did not have this issue. Removed line-clamp-2 from both the summary paragraph and fragment content div in the HP tier. --- ui/src/lib/components/EntryCard.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/lib/components/EntryCard.svelte b/ui/src/lib/components/EntryCard.svelte index 00c9b95..1ee5b6c 100644 --- a/ui/src/lib/components/EntryCard.svelte +++ b/ui/src/lib/components/EntryCard.svelte @@ -353,11 +353,11 @@ Processing… {:else if isFragment} -
+
{@html sanitizeHTML(entry.raw_content)}
{:else} -

{entry.summary}

+

{entry.summary}

{#if entry.takeaways?.length}