increase limit to 12 "Untitled.webp"

master
Aevann 2024-11-13 03:13:00 +02:00
parent 2320211082
commit 05a52dae7f
1 changed files with 1 additions and 1 deletions

View File

@ -392,7 +392,7 @@ const input = document.getElementById('file')
function handle_files() {
if (!input.files.length) return
if (check_file_size(input, input.files[0])) {
const char_limit = innerWidth >= 768 ? 50 : 10;
const char_limit = innerWidth >= 768 ? 50 : 13;
input.previousElementSibling.className = "";
input.previousElementSibling.textContent = input.files[0].name.substr(0, char_limit);