Use a ☆ instead of the word "starred"
This commit is contained in:
@@ -96,7 +96,11 @@ const SongContextMenu = ({ record, showStar, onAddToPlaylist, visible }) => {
|
||||
disabled={updating}
|
||||
className={classes.star}
|
||||
>
|
||||
{record.starred ? <StarIcon /> : <StarBorderIcon />}
|
||||
{record.starred ? (
|
||||
<StarIcon fontSize={'small'} />
|
||||
) : (
|
||||
<StarBorderIcon fontSize={'small'} />
|
||||
)}
|
||||
</IconButton>
|
||||
)}
|
||||
<IconButton
|
||||
|
||||
@@ -58,7 +58,6 @@ export const SongDatagridRow = ({
|
||||
? child
|
||||
: cloneElement(child, {
|
||||
visible: contextVisible || visible,
|
||||
...child.props,
|
||||
...rest,
|
||||
}))
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user