diff options
| author | ilotterytea <iltsu@alright.party> | 2025-03-19 01:48:41 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-03-19 01:48:41 +0500 |
| commit | 66a0a296b6608c30b14d1b8ffa7fa709e806c1ff (patch) | |
| tree | a12f19448239157a0761b119c32871a9c094f4a1 | |
| parent | f625a667c8dbff9e469a3820b14989fa45d42a4b (diff) | |
fix: show upload button
| -rw-r--r-- | public/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php index 739b75f..5d3668e 100644 --- a/public/index.php +++ b/public/index.php @@ -57,6 +57,8 @@ $accepted_mime_types = implode(', ', $accepted_mime_types); }); const formUploadWrapper = document.getElementById('form-upload-wrapper'); + formUploadWrapper.style.display = 'block'; + const formSubmitButton = document.querySelector('#form-upload button[type=submit]'); const formFile = document.getElementById('form-file'); |
