Hide star completely if in Playlist view

This commit is contained in:
Deluan 2020-11-27 16:24:22 -05:00
parent ab856e3dd1
commit 0b729e1cf9
1 changed files with 3 additions and 3 deletions

View File

@ -11,10 +11,10 @@ const useStyles = makeStyles({
star: {
color: (props) => props.color,
visibility: (props) =>
props.starred
? 'visible'
: props.visible === false
props.visible === false
? 'hidden'
: props.starred
? 'visible'
: 'inherit',
},
})