@contentful/field-editor-reference 5.1.8 → 5.2.0

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.
@@ -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
  },