Skip to content

Commit

Permalink
Increase upload maximum size
Browse files Browse the repository at this point in the history
  • Loading branch information
sbont committed Nov 2, 2024
1 parent 8784c71 commit e9ef695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Score.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div class="content">
<FileUpload name="file[]" :disabled="uploadDisabled()" @uploader="onUpload" @select="selectFile"
@remove="removeFile" :multiple="false" :file-limit="1" accept="application/pdf,image/*"
:maxFileSize="1000000" invalidFileSizeMessage="File exceeds maximum size of 1GB."
:maxFileSize="2000000" invalidFileSizeMessage="File exceeds maximum size of 2GB."
choose-label="Browse" customUpload>
<template #empty>
<span>Drag and drop files to here to upload.</span>
Expand Down

0 comments on commit e9ef695

Please sign in to comment.