Skip to content
Snippets Groups Projects
Commit c17971de authored by Ina Martini's avatar Ina Martini
Browse files

fix: made file upload accept .png files

parent 2e9d6935
No related branches found
No related tags found
3 merge requests!66Final merge,!57General cleanup of application,!4Pipeline fix
......@@ -256,7 +256,7 @@ const removeUploadedFile = () => {
<input
id="fileUpload"
type="file"
accept=".jpg"
accept=".jpg, .png"
hidden
@change="handleFileChange"
/>
......
......@@ -276,7 +276,7 @@ onMounted(async () => {
<input
id="fileUpload"
type="file"
accept=".jpg"
accept=".jpg, .png"
hidden
@change="handleFileChange"
/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment