mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-09 20:29:36 +02:00
Fix conditionals on album artist detail
This commit is contained in:
@@ -357,7 +357,7 @@ export const AlbumArtistDetailContent = () => {
|
|||||||
</Group>
|
</Group>
|
||||||
</Group>
|
</Group>
|
||||||
</Box>
|
</Box>
|
||||||
{showGenres && (
|
{showGenres ? (
|
||||||
<Box component="section">
|
<Box component="section">
|
||||||
<Group spacing="sm">
|
<Group spacing="sm">
|
||||||
{detailQuery?.data?.genres?.map((genre) => (
|
{detailQuery?.data?.genres?.map((genre) => (
|
||||||
@@ -377,7 +377,7 @@ export const AlbumArtistDetailContent = () => {
|
|||||||
))}
|
))}
|
||||||
</Group>
|
</Group>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
) : null}
|
||||||
{showBiography ? (
|
{showBiography ? (
|
||||||
<Box
|
<Box
|
||||||
component="section"
|
component="section"
|
||||||
@@ -397,7 +397,7 @@ export const AlbumArtistDetailContent = () => {
|
|||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
) : null}
|
) : null}
|
||||||
{showTopSongs && (
|
{showTopSongs ? (
|
||||||
<Box component="section">
|
<Box component="section">
|
||||||
<Group
|
<Group
|
||||||
noWrap
|
noWrap
|
||||||
@@ -444,7 +444,7 @@ export const AlbumArtistDetailContent = () => {
|
|||||||
onRowDoubleClicked={handleRowDoubleClick}
|
onRowDoubleClicked={handleRowDoubleClick}
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
) : null}
|
||||||
<Box component="section">
|
<Box component="section">
|
||||||
<Stack spacing="xl">
|
<Stack spacing="xl">
|
||||||
{carousels
|
{carousels
|
||||||
|
|||||||
Reference in New Issue
Block a user