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

Commit 3e0fab4

Browse files
committed
build v0.6.16
fix: double grid items
1 parent 03c86e6 commit 3e0fab4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xsoulspace/vue_flutter_tailwind",
33
"description": "Vue3 styled like Flutter with Tailwind CSS",
4-
"version": "0.6.15",
4+
"version": "0.6.16",
55
"private": false,
66
"author": {
77
"name": "Anton Malofeev",

src/components/GridViewBuilder.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export default {
157157
oldPosition.h = updatedPosition.h
158158
}
159159
}
160-
for (const createdPosition of created.concat(updated)) {
160+
for (const createdPosition of created) {
161161
internalLayoutMatrix.push(createdPosition)
162162
}
163163
}

0 commit comments

Comments
 (0)