From cc04ea7753940fccb7316c78623e02f2b98846a1 Mon Sep 17 00:00:00 2001 From: Josh Bairstow Date: Tue, 2 Jun 2026 00:08:25 +1000 Subject: [PATCH] feat(blog): PostRow accepts searchText, emits data-search --- src/components/molecules/PostRow.astro | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/molecules/PostRow.astro b/src/components/molecules/PostRow.astro index 558b926..c05c4cc 100644 --- a/src/components/molecules/PostRow.astro +++ b/src/components/molecules/PostRow.astro @@ -5,12 +5,13 @@ interface Props { href: string; deck?: string; tag?: string; + searchText: string; } -const { date, title, href, deck, tag } = Astro.props; +const { date, title, href, deck, tag, searchText } = Astro.props; --- - + {date} {title}