fix(ui): disable bulk action buttons if transcoding edit is disabled

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2025-03-07 18:01:49 -05:00
parent 4156602158
commit 98a6819390

View file

@ -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}