mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
fix invalid comparison on detail rating column hide condition
This commit is contained in:
@@ -60,7 +60,6 @@ export function shouldShowHoverOnlyColumnContent(
|
|||||||
return (
|
return (
|
||||||
isRowHovered ||
|
isRowHovered ||
|
||||||
(columnId === TableColumn.USER_FAVORITE && song.userFavorite !== false) ||
|
(columnId === TableColumn.USER_FAVORITE && song.userFavorite !== false) ||
|
||||||
(columnId === TableColumn.USER_RATING &&
|
(columnId === TableColumn.USER_RATING && song.userRating !== null && song.userRating !== 0)
|
||||||
(song.userRating !== null || song.userRating !== 0))
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user