OKRN commited on
Commit
c044db5
·
verified ·
1 Parent(s): 7e986a8

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +1 -1
templates/index.html CHANGED
@@ -465,7 +465,7 @@
465
 
466
  fileInput.addEventListener("change", () => {
467
  const f = fileInput.files && fileInput.files[0];
468
- if (f) setBadge(badge, `Uploaded: ${f.name}`, true);
469
  else setBadge(badge, badge.dataset.defaultText, false);
470
  });
471
 
 
465
 
466
  fileInput.addEventListener("change", () => {
467
  const f = fileInput.files && fileInput.files[0];
468
+ if (f) setBadge(badge, `Selected: ${f.name}`, true);
469
  else setBadge(badge, badge.dataset.defaultText, false);
470
  });
471