Add max files limit per share

This commit is contained in:
Elias Schneider
2022-04-30 20:03:09 +02:00
parent 4cf67db6a3
commit 7ddce593f9
3 changed files with 7 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ const FileList = ({
};
const rows = files.map((file, i) => (
<tr key={file.name}>
<tr key={i}>
<td>{file.name}</td>
<td>{file.type}</td>
<td>{bytesToSize(file.size)}</td>