Skip to content

Commit

Permalink
Merge pull request #157 from waifuvault/filename-default
Browse files Browse the repository at this point in the history
make the filename on system default in table
  • Loading branch information
VictoriqueMoe authored Jun 17, 2024
2 parents bcc1cce + 08a9715 commit 5d841b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/public/secure/files.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">file Name on system</th>
<th scope="col">file Name</th>
<th scope="col">file Extension</th>
<th scope="col">file Size</th>
<th scope="col">Created At</th>
<th scope="col">expires</th>
<th scope="col">mediaType</th>
<th scope="col">original FileName</th>
<th scope="col">file Name on system</th>
<th scope="col">url</th>
</tr>
</thead>
Expand Down Expand Up @@ -193,13 +193,13 @@
case "entries":
return [
{ data: "id" },
{ data: "fileName", className: "col-filename" },
{ data: "originalFileName", className: "col-filename" },
{ data: "fileExtension", className: "col-fileext" },
{ data: "fileSize", render: sizeAsMB() },
{ data: "createdAt", render: customDate() },
{ data: "expires", render: renderNullField() },
{ data: "mediaType", render: renderNullField() },
{ data: "originalFileName" },
{ data: "fileName" },
{ data: "url" }
];
}
Expand Down

0 comments on commit 5d841b2

Please sign in to comment.