spotifyControls: make album of local tracks unclickable (#203)
This commit is contained in:
parent
010523eeac
commit
57f3feba68
@ -293,15 +293,16 @@ function Info({ track }: { track: Track; }) {
|
||||
{track.album.name && (
|
||||
<Forms.FormText variant="text-sm/normal" className={cl("ellipoverflow")}>
|
||||
on
|
||||
<a id={cl("album-title")}
|
||||
<Link id={cl("album-title")}
|
||||
href={`https://open.spotify.com/album/${track.album.id}`}
|
||||
target="_blank"
|
||||
className={cl("album")}
|
||||
disabled={!track.album.id}
|
||||
style={{ fontSize: "inherit" }}
|
||||
title={track.album.name}
|
||||
>
|
||||
{track.album.name}
|
||||
</a>
|
||||
</Link>
|
||||
</Forms.FormText>
|
||||
)}
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user