Show names in the sidebar because we're not monsters

This commit is contained in:
Marks Polakovs 2021-03-13 10:53:18 +00:00
parent 840e969113
commit 2e2c05b264

View file

@ -42,7 +42,8 @@ export const Item = memo(function Item({
);
const partyMode = useSelector((state: RootState) => state.settings.partyMode);
const showName = !partyMode || !isTrack(x) || ("played" in x && x.played);
const showName =
!partyMode || column > 2 || !isTrack(x) || ("played" in x && x.played);
function triggerClick() {
if (column > -1) {