fix cell field length

This commit is contained in:
Pete Matsyburka
2023-11-14 00:32:48 +02:00
parent 46af87d89a
commit 9aa68fe955
+1 -1
View File
@@ -86,7 +86,7 @@ export default {
const area = this.field.areas?.[0]
if (area) {
return parseInt(area.w / area.cell_w)
return parseInt(area.w / area.cell_w) + 1
} else {
return null
}