Skip to content

Commit

Permalink
fix: fix infoBy typo (#545)
Browse files Browse the repository at this point in the history
* fix: fix infoBy typo

* chore: bump svelte-infinitegrid version
  • Loading branch information
daybrush committed Jun 29, 2023
1 parent e692d4f commit a3f1a75
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/svelte-infinitegrid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@egjs/svelte-infinitegrid",
"version": "4.10.0",
"version": "4.10.1",
"description": "A Svelte component that can arrange items infinitely according to the type of grids",
"sideEffects": false,
"svelte": "src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte-infinitegrid/src/InfiniteGrid.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
const {
data,
...rest
} = infoBy(child, i) || {};
} = infoBy(item, i) || {};
return {
groupKey: groupBy(item, i),
key: itemBy(item, i),
Expand Down

0 comments on commit a3f1a75

Please sign in to comment.