mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Signed-off-by: Sunny <sunny@sny.sh>
This commit is contained in:
parent
195f2b3f38
commit
6709ab3c5e
2 changed files with 12 additions and 7 deletions
|
@ -40,6 +40,7 @@ const ContextMenu = ({
|
|||
color,
|
||||
className,
|
||||
songQueryParams,
|
||||
hideShare,
|
||||
hideInfo,
|
||||
}) => {
|
||||
const classes = useStyles({ color })
|
||||
|
@ -80,13 +81,15 @@ const ContextMenu = ({
|
|||
label: translate('resources.album.actions.addToPlaylist'),
|
||||
action: (data, ids) => dispatch(openAddToPlaylist({ selectedIds: ids })),
|
||||
},
|
||||
share: {
|
||||
enabled: config.enableSharing,
|
||||
needData: false,
|
||||
label: translate('ra.action.share'),
|
||||
action: (record) =>
|
||||
dispatch(openShareMenu([record.id], resource, record.name)),
|
||||
},
|
||||
...(!hideShare && {
|
||||
share: {
|
||||
enabled: config.enableSharing,
|
||||
needData: false,
|
||||
label: translate('ra.action.share'),
|
||||
action: (record) =>
|
||||
dispatch(openShareMenu([record.id], resource, record.name)),
|
||||
},
|
||||
}),
|
||||
download: {
|
||||
enabled: config.enableDownloads && record.size,
|
||||
needData: false,
|
||||
|
|
|
@ -136,6 +136,8 @@ const DiscSubtitleRow = forwardRef(
|
|||
releaseDate={record.releaseDate}
|
||||
showLove={false}
|
||||
className={classes.contextMenu}
|
||||
hideShare={true}
|
||||
hideInfo={true}
|
||||
visible={contextAlwaysVisible}
|
||||
/>
|
||||
</TableCell>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue