Make AlbumSongs BulkActionsToolbar more responsive

This commit is contained in:
Deluan 2023-01-24 16:39:33 -05:00
parent 85084cda57
commit 0c263cf234
2 changed files with 6 additions and 1 deletions

View file

@ -145,6 +145,10 @@ const AlbumSongs = (props) => {
defaultOff: ['channels', 'bpm', 'year', 'playCount', 'playDate', 'size'], defaultOff: ['channels', 'bpm', 'year', 'playCount', 'playDate', 'size'],
}) })
const bulkActionsLabel = isDesktop
? 'ra.action.bulk_actions'
: 'ra.action.bulk_actions_mobile'
return ( return (
<> <>
<ListToolbar <ListToolbar
@ -159,7 +163,7 @@ const AlbumSongs = (props) => {
})} })}
key={version} key={version}
> >
<BulkActionsToolbar {...props}> <BulkActionsToolbar {...props} label={bulkActionsLabel}>
<SongBulkActions /> <SongBulkActions />
</BulkActionsToolbar> </BulkActionsToolbar>
<SongDatagrid <SongDatagrid

View file

@ -238,6 +238,7 @@
"add": "Add", "add": "Add",
"back": "Go Back", "back": "Go Back",
"bulk_actions": "1 item selected |||| %{smart_count} items selected", "bulk_actions": "1 item selected |||| %{smart_count} items selected",
"bulk_actions_mobile": "1 |||| %{smart_count}",
"cancel": "Cancel", "cancel": "Cancel",
"clear_input_value": "Clear value", "clear_input_value": "Clear value",
"clone": "Clone", "clone": "Clone",