Remove "Show" button from PlaylistEdit view

This commit is contained in:
Deluan 2021-10-31 13:14:59 -04:00 committed by Deluan Quintão
parent 86afd16cc8
commit 765557d739
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ const PlaylistEditForm = (props) => {
}
const PlaylistEdit = (props) => (
<Edit title={<PlaylistTitle />} {...props}>
<Edit title={<PlaylistTitle />} actions={false} {...props}>
<PlaylistEditForm {...props} />
</Edit>
)