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