@micromag/screen-game-sort 0.3.739 → 0.3.740
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/es/index.js +1 -1
- package/package.json +2 -2
package/es/index.js
CHANGED
|
@@ -138,7 +138,7 @@ var GameSort = function GameSort(_ref) {
|
|
|
138
138
|
var items = useMemo(function () {
|
|
139
139
|
return (initialItems || []).map(function (item, itemIndex) {
|
|
140
140
|
return _objectSpread({
|
|
141
|
-
id: itemIndex
|
|
141
|
+
id: "item-".concat(itemIndex)
|
|
142
142
|
}, item);
|
|
143
143
|
});
|
|
144
144
|
}, [initialItems]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/screen-game-sort",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.740",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"access": "public",
|
|
88
88
|
"registry": "https://registry.npmjs.org/"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "49f2574bb00e6b9e382b01da68706940542df281"
|
|
91
91
|
}
|