@evergis/uilib-gl 1.0.85 → 1.0.86

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.
@@ -18118,6 +18118,7 @@ const MenuComponent = _ref => {
18118
18118
 
18119
18119
  return Children.toArray(children).map(item => {
18120
18120
  const {
18121
+ key,
18121
18122
  text,
18122
18123
  value,
18123
18124
  icon,
@@ -18127,7 +18128,7 @@ const MenuComponent = _ref => {
18127
18128
  disabled
18128
18129
  } = item.props;
18129
18130
  return React.createElement(OptionContainer, {
18130
- key: `child-${value || text || synthKey}`,
18131
+ key: `child-${value || text || synthKey || key}`,
18131
18132
  nullable: value === null,
18132
18133
  className: className,
18133
18134
  onClick: onClick,