mirror of
https://github.com/rikkaneko/paste.git
synced 2025-06-06 08:35:44 +00:00
Fix typo
This commit is contained in:
parent
ef9b6e7334
commit
5404d3055b
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@
|
|||
for (let i = 0, approx = bytes / 1024; approx > 1; approx /= 1024, i++) {
|
||||
size = approx.toFixed(3) + ' ' + units[i];
|
||||
}
|
||||
status.textContent = `${this.files[0]?.type ?? 'application/application/octet-stream'}, ${size}`;
|
||||
status.textContent = `${this.files[0]?.type || 'application/octet-stream'}, ${size}`;
|
||||
}
|
||||
|
||||
function toggle_password() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue