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 -1
View File
@@ -64,7 +64,7 @@ const PlaylistEditForm = (props) => {
} }
const PlaylistEdit = (props) => ( const PlaylistEdit = (props) => (
<Edit title={<PlaylistTitle />} {...props}> <Edit title={<PlaylistTitle />} actions={false} {...props}>
<PlaylistEditForm {...props} /> <PlaylistEditForm {...props} />
</Edit> </Edit>
) )