hide detail rating column on zero value

This commit is contained in:
jeffvli
2026-02-12 00:57:24 -08:00
parent c314fa0bf3
commit dc957cb3cc
@@ -60,6 +60,7 @@ export function shouldShowHoverOnlyColumnContent(
return (
isRowHovered ||
(columnId === TableColumn.USER_FAVORITE && song.userFavorite !== false) ||
(columnId === TableColumn.USER_RATING && song.userRating != null)
(columnId === TableColumn.USER_RATING &&
(song.userRating !== null || song.userRating !== 0))
);
}