Merge pull request #1121 from leigh-pointer/dev

Fix Upload SVG throw error #1120
This commit is contained in:
Shaun Walker
2021-02-24 17:22:23 -05:00
committed by GitHub
2 changed files with 12 additions and 9 deletions

View File

@ -42,7 +42,7 @@
<td><a href="@(ContentUrl(context.FileId))" target="_new">@context.Name</a></td>
<td>@context.ModifiedOn</td>
<td>@context.Extension.ToUpper() @Localizer["File"]</td>
<td>@(context.Size / 1000) KB</td>
<td>@string.Format("{0:0.00}", ((decimal)context.Size / 1000)) KB</td>
</Row>
</Pager>
@if (_files.Count == 0)