Fixed a stray 2

This commit is contained in:
Jordan Roher 2023-12-17 22:05:17 -08:00
parent 26ba6aaa38
commit c135f24bd7
3 changed files with 9 additions and 15 deletions

View File

@ -50,7 +50,7 @@
href="https://github.com/notclickable-jordan/starbase-80"
target="_blank"
rel="noreffer"
title="undefined"
title=""
className="undefined"
>
Check the readme
@ -58,13 +58,11 @@
</h3>
<p className="text-sm text-black/50 dark:text-white/50 line-clamp-1">
2
<a
href="https://github.com/notclickable-jordan/starbase-80"
target="_blank"
rel="noreffer"
title="undefined"
title=""
className="undefined"
>
Use your own icons
@ -94,7 +92,7 @@
href="https://github.com/notclickable-jordan/docker-symphony"
target="_blank"
rel="noreffer"
title="undefined"
title=""
className="undefined"
>
Bind mount
@ -102,13 +100,11 @@
</h3>
<p className="text-sm text-black/50 dark:text-white/50 line-clamp-1">
2
<a
href="https://github.com/notclickable-jordan/docker-symphony"
target="_blank"
rel="noreffer"
title="undefined"
title=""
className="undefined"
>
/app/src/config/config.json
@ -138,7 +134,7 @@
href="https://www.paramountplus.com/"
target="_blank"
rel="noreffer"
title="undefined"
title=""
className="undefined"
>
Watch Lower Decks
@ -146,13 +142,11 @@
</h3>
<p className="text-sm text-black/50 dark:text-white/50 line-clamp-1">
2
<a
href="https://www.paramountplus.com/"
target="_blank"
rel="noreffer"
title="undefined"
title=""
className="undefined"
>
On Paramount+

View File

@ -20,14 +20,14 @@ export const Anchor = function (props: IProps) {
if (newWindowLocal) {
return `
<a href="${uri}" target="_blank" rel="noreffer" title="${title}" className="${className}">
<a href="${uri}" target="_blank" rel="noreffer" title="${title || ""}" className="${className}">
${children}
</a>
`;
}
return `
<a href="${uri}" title="${title}" className="${className}">
<a href="${uri}" title="${title || ""}" className="${className}">
${children}
</a>
`;

View File

@ -44,7 +44,7 @@ function Service(props: IServiceProps) {
${
!is.null(description) &&
`
<p className="text-sm text-black/50 dark:text-white/50 line-clamp-1">2
<p className="text-sm text-black/50 dark:text-white/50 line-clamp-1">
${Anchor({ uri, newWindow, children: description })}
</p>
`