diginet-core-ui 1.4.69-beta.3 → 1.4.69-beta.4

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.
@@ -972,7 +972,7 @@ const Attachment = /*#__PURE__*/memo( /*#__PURE__*/forwardRef((inProps, referenc
972
972
  return jsx(Grid, {
973
973
  item: true,
974
974
  xs: 12,
975
- key: idx,
975
+ key: item.name,
976
976
  onClick: e => onChooseItem(e, idx),
977
977
  onDoubleClick: e => onView(e.currentTarget, isNew ? null : item.AttachmentID),
978
978
  className: classNames('DGN-UI-Attachment-List-Attached-Row', 'attachment-row')
@@ -1028,7 +1028,7 @@ const Attachment = /*#__PURE__*/memo( /*#__PURE__*/forwardRef((inProps, referenc
1028
1028
  return jsx(Grid, {
1029
1029
  item: true,
1030
1030
  xs: 'auto',
1031
- key: idx,
1031
+ key: `Icon_${item.name}`,
1032
1032
  onClick: e => onChooseItem(e, idx),
1033
1033
  onDoubleClick: e => onView(e.currentTarget, isNew ? null : item.AttachmentID),
1034
1034
  className: classNames('DGN-UI-Attachment-List-Attached-Row', 'attachment-row')
@@ -1097,7 +1097,7 @@ const Attachment = /*#__PURE__*/memo( /*#__PURE__*/forwardRef((inProps, referenc
1097
1097
  md: isSpecialCase ? specialBreakpointColumn : 3,
1098
1098
  lg: isSpecialCase ? specialBreakpointColumn : 2,
1099
1099
  xl: isSpecialCase ? specialBreakpointColumn : 2,
1100
- key: idx,
1100
+ key: `Picture_${item.name}`,
1101
1101
  onClick: e => onChooseItem(e, idx),
1102
1102
  onDoubleClick: e => onView(e.currentTarget, isNew ? null : item.AttachmentID),
1103
1103
  className: classNames('DGN-UI-Attachment-List-Attached-Row', 'attachment-row')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diginet-core-ui",
3
- "version": "1.4.69-beta.3",
3
+ "version": "1.4.69-beta.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "license": "UNLICENSED",