From e7b8477891ccc83ab480f818122bc3246a75780c Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Wed, 22 Mar 2023 15:23:54 -0400 Subject: [PATCH] Formatting + Set file size limit to 5mb --- src/common-components/textbox-question/textbox-question.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/common-components/textbox-question/textbox-question.vue b/src/common-components/textbox-question/textbox-question.vue index 895777f0d..c39283a94 100644 --- a/src/common-components/textbox-question/textbox-question.vue +++ b/src/common-components/textbox-question/textbox-question.vue @@ -159,7 +159,6 @@ export default { }, isImageValid(imageFile) { - return imageFile && imageFile.size < this.maxFileSize; }, }, @@ -201,10 +200,10 @@ export default { }, maxFileSize() { - let kiloBytes = 512; + let kiloBytes = 5140; return kiloBytes * 1028; - } + }, }, watch: { async value(newValue) {