ie. when i put required on FileInput
<FileInput source="files" label="common.file" accept={allowedFiles} validate={[required]}>
<RestedFileField source="url" title="name" />
</FileInput>
the form is not sent but does not display any error
(same with ImageInput)
Is this bug back? I seem to be having a similar issue; the form does not send but there is no displayed error message. Looking at the changes for #949 the errorText in Labeled.js seems to have been removed at some point.
Having the same issue.
Also should this even work for the maxSize prop? Or do I have to find another way of displaying that the selected file is too large?
Having this issue too, it looks like meta or similar is not being passed around correctly? The validation function runs but the UI doesn't indicate an error (but the form will not submit). On the latest v2.2.2
This problem is still present in the 2.4.0 version
Most helpful comment
Is this bug back? I seem to be having a similar issue; the form does not send but there is no displayed error message. Looking at the changes for #949 the
errorTextin Labeled.js seems to have been removed at some point.