Fixed a stray 2
This commit is contained in:
parent
26ba6aaa38
commit
c135f24bd7
18
index-2.html
18
index-2.html
@ -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+
|
||||
|
@ -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>
|
||||
`;
|
||||
|
@ -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>
|
||||
`
|
||||
|
Loading…
Reference in New Issue
Block a user