We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, thanks for your libraries. It works correctly but I have one error which display in console.
Despite the error, it works.
The text was updated successfully, but these errors were encountered:
Hi, sorry for the late reply. Can you confirm your react-admin version?
Sorry, something went wrong.
I have to remember how to reproduce the bug already 😄
I resolve this with my own compoment :
import React from 'react' import { DateInput } from 'react-admin-date-inputs' import MomentUtils from 'material-ui-pickers/utils/moment-utils' const MyDateInput = (props) => { const { isRequired, ...rest } = props return <DateInput options={{ format: 'DD/MM/YYYY', clearable: true }} parse={v => v && v.toISOString()} providerOptions={{ utils: MomentUtils }} isRequired={isRequired} {...rest} /> } MyDateInput.defaultProps = { isRequired: false, } export default MyDateInput
Successfully merging a pull request may close this issue.
Hello,
thanks for your libraries. It works correctly but I have one error which display in console.
Despite the error, it works.
The text was updated successfully, but these errors were encountered: