@contentful/field-editor-reference 5.1.8 → 5.2.1

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.
@@ -1919,7 +1919,7 @@ var _excluded$1 = ["priority"],
1919
1919
  _excluded2 = ["children"];
1920
1920
 
1921
1921
  var globalQueue = /*#__PURE__*/new PQueue({
1922
- concurrency: 20
1922
+ concurrency: 50
1923
1923
  });
1924
1924
  var UnsupportedError = /*#__PURE__*/function (_Error) {
1925
1925
  _inheritsLoose(UnsupportedError, _Error);
@@ -2977,12 +2977,16 @@ function WrappedEntryCard(props) {
2977
2977
  onClick: function onClick() {
2978
2978
  props.onRemove && props.onRemove();
2979
2979
  }
2980
- }, "Remove") : null, props.hasCardMoveActions && (props.onMoveTop || props.onMoveBottom) ? createElement(MenuDivider, null) : null, props.hasCardMoveActions && props.onMoveTop ? createElement(MenuItem, {
2980
+ }, "Remove") : null, props.hasCardMoveActions && (props.onMoveTop || props.onMoveBottom) ? createElement(MenuDivider, {
2981
+ key: "divider"
2982
+ }) : null, props.hasCardMoveActions && props.onMoveTop ? createElement(MenuItem, {
2983
+ key: "move-top",
2981
2984
  onClick: function onClick() {
2982
2985
  return props.onMoveTop && props.onMoveTop();
2983
2986
  },
2984
2987
  testId: "move-top"
2985
2988
  }, "Move to top") : null, props.hasCardMoveActions && props.onMoveBottom ? createElement(MenuItem, {
2989
+ key: "move-bottom",
2986
2990
  onClick: function onClick() {
2987
2991
  return props.onMoveBottom && props.onMoveBottom();
2988
2992
  },