@contentful/field-editor-reference 4.6.2 → 4.6.3
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/CHANGELOG.md +6 -0
- package/dist/field-editor-reference.cjs.development.js +3 -3
- package/dist/field-editor-reference.cjs.development.js.map +1 -1
- package/dist/field-editor-reference.cjs.production.min.js +1 -1
- package/dist/field-editor-reference.cjs.production.min.js.map +1 -1
- package/dist/field-editor-reference.esm.js +3 -3
- package/dist/field-editor-reference.esm.js.map +1 -1
- package/package.json +2 -2
|
@@ -3343,7 +3343,7 @@ function MultipleEntryReferenceEditor(props) {
|
|
|
3343
3343
|
return createElement(MultipleReferenceEditor, Object.assign({}, props, {
|
|
3344
3344
|
entityType: "Entry"
|
|
3345
3345
|
}), function (childrenProps) {
|
|
3346
|
-
return createElement(SortableLinkList, Object.assign({},
|
|
3346
|
+
return createElement(SortableLinkList, Object.assign({}, childrenProps, {
|
|
3347
3347
|
axis: "y",
|
|
3348
3348
|
useDragHandle: true
|
|
3349
3349
|
}), function (_ref) {
|
|
@@ -3353,7 +3353,7 @@ function MultipleEntryReferenceEditor(props) {
|
|
|
3353
3353
|
isDisabled = _ref.isDisabled,
|
|
3354
3354
|
DragHandle = _ref.DragHandle;
|
|
3355
3355
|
var lastIndex = items.length - 1;
|
|
3356
|
-
return createElement(FetchingWrappedEntryCard, Object.assign({},
|
|
3356
|
+
return createElement(FetchingWrappedEntryCard, Object.assign({}, childrenProps, {
|
|
3357
3357
|
key: item.sys.id + "-" + index,
|
|
3358
3358
|
index: index,
|
|
3359
3359
|
allContentTypes: childrenProps.allContentTypes,
|
|
@@ -3805,7 +3805,7 @@ function MultipleMediaEditor(props) {
|
|
|
3805
3805
|
index = _ref.index,
|
|
3806
3806
|
isDisabled = _ref.isDisabled,
|
|
3807
3807
|
DragHandle = _ref.DragHandle;
|
|
3808
|
-
return createElement(FetchingWrappedAssetCard, Object.assign({},
|
|
3808
|
+
return createElement(FetchingWrappedAssetCard, Object.assign({}, childrenProps, {
|
|
3809
3809
|
isDisabled: isDisabled,
|
|
3810
3810
|
key: item.sys.id + "-" + index,
|
|
3811
3811
|
assetId: item.sys.id,
|