Remove "Show" button from PlaylistEdit view

This commit is contained in:
Deluan 2021-10-31 13:14:59 -04:00 committed by Joe Stump
parent caeac18d2a
commit 42e7f00a65
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

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>
)