Display all server roles separately.

This commit is contained in:
Paul
2021-08-08 21:50:29 +01:00
parent a19ff58e12
commit d5b0d8d9cf
3 changed files with 46 additions and 9 deletions

View File

@@ -79,6 +79,7 @@ export function grabFiles(
const files = (e.currentTarget as HTMLInputElement)?.files;
if (!files) return;
for (const file of files) {
alert(file.size);
if (file.size > maxFileSize) {
return tooLarge();
}