Help dialog with available hotkeys

This commit is contained in:
Deluan
2021-02-03 19:08:03 -05:00
parent a168f46b95
commit 847531391d
16 changed files with 162 additions and 66 deletions
+2 -4
View File
@@ -6,11 +6,11 @@ import Autocomplete, {
} from '@material-ui/lab/Autocomplete'
import { useGetList, useTranslate } from 'react-admin'
import PropTypes from 'prop-types'
import { isWritable } from '../common/Writable'
import { isWritable } from '../common'
const filter = createFilterOptions()
const SelectPlaylistInput = ({ onChange }) => {
export const SelectPlaylistInput = ({ onChange }) => {
const translate = useTranslate()
const { ids, data } = useGetList(
'playlist',
@@ -94,5 +94,3 @@ const SelectPlaylistInput = ({ onChange }) => {
SelectPlaylistInput.propTypes = {
onChange: PropTypes.func.isRequired,
}
export default SelectPlaylistInput