From 9aa68fe955872813c48b7004bd74be679bf0028d Mon Sep 17 00:00:00 2001 From: Pete Matsyburka Date: Tue, 14 Nov 2023 00:32:48 +0200 Subject: [PATCH] fix cell field length --- app/javascript/submission_form/text_step.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/submission_form/text_step.vue b/app/javascript/submission_form/text_step.vue index 9b88bb50..4fd0377e 100644 --- a/app/javascript/submission_form/text_step.vue +++ b/app/javascript/submission_form/text_step.vue @@ -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 }