Show names in the sidebar because we're not monsters
This commit is contained in:
parent
840e969113
commit
2e2c05b264
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue