mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Fix Share dialog titles for Album and Playlist
This commit is contained in:
parent
5eefb265e5
commit
e0fc997adb
2 changed files with 5 additions and 13 deletions
|
@ -37,7 +37,6 @@ const AlbumActions = ({
|
||||||
ids,
|
ids,
|
||||||
data,
|
data,
|
||||||
record,
|
record,
|
||||||
resource,
|
|
||||||
permanentFilter,
|
permanentFilter,
|
||||||
...rest
|
...rest
|
||||||
}) => {
|
}) => {
|
||||||
|
@ -68,8 +67,8 @@ const AlbumActions = ({
|
||||||
}, [dispatch, ids])
|
}, [dispatch, ids])
|
||||||
|
|
||||||
const handleShare = React.useCallback(() => {
|
const handleShare = React.useCallback(() => {
|
||||||
dispatch(openShareMenu([record.id], resource, record.name))
|
dispatch(openShareMenu([record.id], 'album', record.name))
|
||||||
}, [dispatch, record, resource])
|
}, [dispatch, record])
|
||||||
|
|
||||||
const handleDownload = React.useCallback(() => {
|
const handleDownload = React.useCallback(() => {
|
||||||
dispatch(openDownloadMenu(record, DOWNLOAD_MENU_ALBUM))
|
dispatch(openDownloadMenu(record, DOWNLOAD_MENU_ALBUM))
|
||||||
|
|
|
@ -35,14 +35,7 @@ const useStyles = makeStyles({
|
||||||
toolbar: { display: 'flex', justifyContent: 'space-between', width: '100%' },
|
toolbar: { display: 'flex', justifyContent: 'space-between', width: '100%' },
|
||||||
})
|
})
|
||||||
|
|
||||||
const PlaylistActions = ({
|
const PlaylistActions = ({ className, ids, data, record, ...rest }) => {
|
||||||
className,
|
|
||||||
ids,
|
|
||||||
data,
|
|
||||||
record,
|
|
||||||
resource,
|
|
||||||
...rest
|
|
||||||
}) => {
|
|
||||||
const dispatch = useDispatch()
|
const dispatch = useDispatch()
|
||||||
const translate = useTranslate()
|
const translate = useTranslate()
|
||||||
const classes = useStyles()
|
const classes = useStyles()
|
||||||
|
@ -94,8 +87,8 @@ const PlaylistActions = ({
|
||||||
}, [getAllSongsAndDispatch])
|
}, [getAllSongsAndDispatch])
|
||||||
|
|
||||||
const handleShare = React.useCallback(() => {
|
const handleShare = React.useCallback(() => {
|
||||||
dispatch(openShareMenu([record.id], resource, record.name))
|
dispatch(openShareMenu([record.id], 'playlist', record.name))
|
||||||
}, [dispatch, record, resource])
|
}, [dispatch, record])
|
||||||
|
|
||||||
const handleDownload = React.useCallback(() => {
|
const handleDownload = React.useCallback(() => {
|
||||||
dispatch(openDownloadMenu(record, DOWNLOAD_MENU_PLAY))
|
dispatch(openDownloadMenu(record, DOWNLOAD_MENU_PLAY))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue