From e33e2f16fae00bb299cdb771fdd6d2b3acedc94b Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 2 Sep 2019 10:12:27 -0500 Subject: [PATCH] add/improve link titles --- src/FilterLists.Web.V2/src/components/LicenseTag.tsx | 1 + src/FilterLists.Web.V2/src/components/SyntaxTag.tsx | 1 + .../src/components/softwareCloud/SoftwareIcon.tsx | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/FilterLists.Web.V2/src/components/LicenseTag.tsx b/src/FilterLists.Web.V2/src/components/LicenseTag.tsx index c96f25892..d6349d4a5 100644 --- a/src/FilterLists.Web.V2/src/components/LicenseTag.tsx +++ b/src/FilterLists.Web.V2/src/components/LicenseTag.tsx @@ -21,6 +21,7 @@ export const LicenseTag = (props: Props) => const TagContents = (props: Props) => props.descriptionUrl ? {props.name} diff --git a/src/FilterLists.Web.V2/src/components/SyntaxTag.tsx b/src/FilterLists.Web.V2/src/components/SyntaxTag.tsx index ccf9d174c..be50e6412 100644 --- a/src/FilterLists.Web.V2/src/components/SyntaxTag.tsx +++ b/src/FilterLists.Web.V2/src/components/SyntaxTag.tsx @@ -21,6 +21,7 @@ export const SyntaxTag = (props: Props) => const TagContents = (props: Props) => props.definitionUrl ? {props.name} diff --git a/src/FilterLists.Web.V2/src/components/softwareCloud/SoftwareIcon.tsx b/src/FilterLists.Web.V2/src/components/softwareCloud/SoftwareIcon.tsx index b79cd9890..55057f058 100644 --- a/src/FilterLists.Web.V2/src/components/softwareCloud/SoftwareIcon.tsx +++ b/src/FilterLists.Web.V2/src/components/softwareCloud/SoftwareIcon.tsx @@ -46,7 +46,7 @@ export const SoftwareIcon = (props: Props) => src={icons[props.id].image} height="20" alt={icons[props.id].imageTitle} - title={icons[props.id].imageTitle} /> + title={`View ${icons[props.id].imageTitle}'s homepage.`} /> : null; interface Icon {