mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
fix(ui): disable bulk action buttons if transcoding edit is disabled
Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
parent
4156602158
commit
98a6819390
1 changed files with 5 additions and 1 deletions
|
@ -7,7 +7,11 @@ import config from '../config'
|
|||
const TranscodingList = (props) => {
|
||||
const isXsmall = useMediaQuery((theme) => theme.breakpoints.down('xs'))
|
||||
return (
|
||||
<List exporter={false} {...props}>
|
||||
<List
|
||||
{...props}
|
||||
exporter={false}
|
||||
bulkActionButtons={config.enableTranscodingConfig}
|
||||
>
|
||||
{isXsmall ? (
|
||||
<SimpleList
|
||||
primaryText={(r) => r.name}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue