From 1876a8c06e5411dfff011d9f25cb837274f2825e Mon Sep 17 00:00:00 2001 From: Ike Saunders Date: Tue, 5 Dec 2023 18:12:50 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20prominent=20link=20descrip?= =?UTF-8?q?tion=20overrides=20for=20grapher=20links?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/gdocs/ProminentLink.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/site/gdocs/ProminentLink.tsx b/site/gdocs/ProminentLink.tsx index 48836567442..d07a48723ba 100644 --- a/site/gdocs/ProminentLink.tsx +++ b/site/gdocs/ProminentLink.tsx @@ -57,9 +57,10 @@ export const ProminentLink = (props: { description = // Adding extra context for graphers by default // Not needed for Explorers as their titles are self-explanatory - description ?? linkType === "grapher" + description ?? + (linkType === "grapher" ? "See the data in our interactive visualization" - : "" + : "") } const Thumbnail = ({ thumbnail }: { thumbnail: string }) => {