From 3f23f436fb57180a05b1d93876f37790649dc853 Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Wed, 22 Jul 2026 21:01:05 +0200 Subject: [PATCH] refactor(citations): rename run chip to Source for non-technical users --- surfsense_web/components/citations/run-citation.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/surfsense_web/components/citations/run-citation.tsx b/surfsense_web/components/citations/run-citation.tsx index ef388373b..d8799a24c 100644 --- a/surfsense_web/components/citations/run-citation.tsx +++ b/surfsense_web/components/citations/run-citation.tsx @@ -19,13 +19,13 @@ export const RunCitation: FC<{ runId: string }> = ({ runId }) => { variant="ghost" onClick={() => openRunPanel({ runId })} className="ml-0.5 inline-flex h-5 min-w-5 items-center justify-center gap-0.5 rounded-md bg-popover px-1.5 text-[11px] font-medium text-popover-foreground/80 align-baseline" - aria-label="View scraper run" + aria-label="See where this came from" > - run + Source - View scraper run + See where this came from ); };