diff --git a/VoidCat/spa/src/Admin/FileList.js b/VoidCat/spa/src/Admin/FileList.js index a4e4f2e..789c4a0 100644 --- a/VoidCat/spa/src/Admin/FileList.js +++ b/VoidCat/spa/src/Admin/FileList.js @@ -46,8 +46,8 @@ export function FileList(props) { return ( - {i.id.substring(0, 4)}... - {meta?.name} + {i.id.substring(0, 4)}.. + {meta?.name ? (meta?.name.length > 20 ? `${meta?.name.substring(0, 20)}..` : meta?.name) : null} {meta?.uploaded ? moment(meta?.uploaded).fromNow() : null} {meta?.size ? FormatBytes(meta?.size, 2) : null} {bw ? FormatBytes(bw.egress, 2) : null}