mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
decrease font weight of JoinedArtists display
This commit is contained in:
@@ -114,7 +114,7 @@ export const JoinedArtists = ({
|
|||||||
{artist.id ? (
|
{artist.id ? (
|
||||||
<Text
|
<Text
|
||||||
component={Link}
|
component={Link}
|
||||||
fw={600}
|
fw={500}
|
||||||
isLink
|
isLink
|
||||||
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
|
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
|
||||||
albumArtistId: artist.id,
|
albumArtistId: artist.id,
|
||||||
@@ -124,7 +124,7 @@ export const JoinedArtists = ({
|
|||||||
{artist.name}
|
{artist.name}
|
||||||
</Text>
|
</Text>
|
||||||
) : (
|
) : (
|
||||||
<Text fw={600} {...linkProps}>
|
<Text fw={500} {...linkProps}>
|
||||||
{artist.name}
|
{artist.name}
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
@@ -156,7 +156,7 @@ export const JoinedArtists = ({
|
|||||||
return (
|
return (
|
||||||
<Text
|
<Text
|
||||||
component={Link}
|
component={Link}
|
||||||
fw={600}
|
fw={500}
|
||||||
isLink
|
isLink
|
||||||
key={`${artist.id}-${index}`}
|
key={`${artist.id}-${index}`}
|
||||||
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
|
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
|
||||||
@@ -169,7 +169,7 @@ export const JoinedArtists = ({
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<Text fw={600} key={`${artist.name}-${index}`} {...linkProps}>
|
<Text fw={500} key={`${artist.name}-${index}`} {...linkProps}>
|
||||||
{text}
|
{text}
|
||||||
</Text>
|
</Text>
|
||||||
);
|
);
|
||||||
@@ -183,7 +183,7 @@ export const JoinedArtists = ({
|
|||||||
{artist.id ? (
|
{artist.id ? (
|
||||||
<Text
|
<Text
|
||||||
component={Link}
|
component={Link}
|
||||||
fw={600}
|
fw={500}
|
||||||
isLink
|
isLink
|
||||||
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
|
to={generatePath(AppRoute.LIBRARY_ALBUM_ARTISTS_DETAIL, {
|
||||||
albumArtistId: artist.id,
|
albumArtistId: artist.id,
|
||||||
|
|||||||
Reference in New Issue
Block a user