Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
build v0.6.16
Browse files Browse the repository at this point in the history
fix: double grid items
  • Loading branch information
Arenukvern committed Feb 16, 2021
1 parent 03c86e6 commit 3e0fab4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@xsoulspace/vue_flutter_tailwind",
"description": "Vue3 styled like Flutter with Tailwind CSS",
"version": "0.6.15",
"version": "0.6.16",
"private": false,
"author": {
"name": "Anton Malofeev",
Expand Down
2 changes: 1 addition & 1 deletion src/components/GridViewBuilder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default {
oldPosition.h = updatedPosition.h
}
}
for (const createdPosition of created.concat(updated)) {
for (const createdPosition of created) {
internalLayoutMatrix.push(createdPosition)
}
}
Expand Down

0 comments on commit 3e0fab4

Please sign in to comment.