Display all server roles separately.

This commit is contained in:
Paul
2021-08-08 21:50:29 +01:00
parent 096ab6caec
commit f2622121a4
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();
}