From baabe56b51314298bcc3919679eef6935d9fb832 Mon Sep 17 00:00:00 2001
From: Gildas <1122076+djhi@users.noreply.github.com>
Date: Wed, 26 Feb 2025 15:24:37 +0100
Subject: [PATCH] [Doc] Update ReferenceManyInput documentation to mention it
cannot reorder its items
---
docs/ReferenceManyInput.md | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/docs/ReferenceManyInput.md b/docs/ReferenceManyInput.md
index 68c1224255..814e711494 100644
--- a/docs/ReferenceManyInput.md
+++ b/docs/ReferenceManyInput.md
@@ -56,7 +56,7 @@ const ProductEdit = () => (
-
+
@@ -97,7 +97,7 @@ const ProductEdit = () => (
```jsx
-
+
@@ -125,7 +125,7 @@ You can use the `defaultValue` prop to populate the list of related records in t
{ sku: 'SKU_4', size: 'XL', color: 'black', stock: 0 },
]}
>
-
+
@@ -297,6 +297,7 @@ const ProductEdit = () => (
## Limitations
- `` cannot be used inside an `` or a ``.
+- `` does not support reordering its items so you should set `disableReordering` on `` if you use it.
- `` cannot be used with `undoable` mutations in a `` view.
- `` cannot have a `` or a `` as one of its children.
- `` does not support server side validation.