mirror of
https://github.com/jeffvli/sonixd.git
synced 2026-05-19 06:08:59 -04:00
Fix empty genre/artist column
This commit is contained in:
@@ -901,7 +901,7 @@ const ListViewTable = ({
|
||||
>
|
||||
{column.dataKey.match(/artist|genre/) ? (
|
||||
<>
|
||||
{rowData[column.dataKey] && (
|
||||
{rowData[column.dataKey] ? (
|
||||
<CustomTooltip text={rowData[column.dataKey][0]?.title}>
|
||||
<RsuiteLinkButton
|
||||
appearance="link"
|
||||
@@ -953,6 +953,8 @@ const ListViewTable = ({
|
||||
{rowData[column.dataKey][0]?.title}
|
||||
</RsuiteLinkButton>
|
||||
</CustomTooltip>
|
||||
) : (
|
||||
<span>​</span>
|
||||
)}
|
||||
</>
|
||||
) : column.dataKey === 'album' ? (
|
||||
|
||||
Reference in New Issue
Block a user