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 {