@applica-software-guru/react-admin 1.5.258 → 1.5.259
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ra-fields/AttachmentField.d.ts +2 -2
- package/dist/react-admin.cjs.js +1 -1
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +2 -2
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +1 -1
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ra-fields/AttachmentField.tsx +3 -3
- package/src/components/ra-inputs/AttachmentInput.tsx +1 -1
|
@@ -16,8 +16,8 @@ type AttachmentFieldProps = BaseAttachmentFieldProps & {
|
|
|
16
16
|
*/
|
|
17
17
|
showUser?: boolean;
|
|
18
18
|
/**
|
|
19
|
-
* When the AttachmentInput is used inside a nested form, you can specify the root
|
|
20
|
-
* If not specified, the default value is the current
|
|
19
|
+
* When the AttachmentInput is used inside a nested form, you can specify the root resource to use for the REST calls.
|
|
20
|
+
* If not specified, the default value is the current resource passed by context.
|
|
21
21
|
*/
|
|
22
22
|
resource?: string;
|
|
23
23
|
};
|