Skip to content

Commit 6c1292b

Browse files
authored
Merge branch 'master' into alex_dev
2 parents 8262e01 + a0c5aca commit 6c1292b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/resources/views/backend/file-list.blade.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@ class="preview_link not_image icon" title="{{$file->filename}}">
141141
<a href="{{$helper->imageUrl($file, 'original','original') }}" target="_blank"
142142
title="{{$file->filename}}" class="preview_link not_image">{{strtoupper($file->suffix)}}
143143
{{$helper->t('file')}}<i class="fas fa-external-link-alt ml-1 small text-secondary"></i></a>
144-
{{($file->filesize/1024 > 1000) ? round($file->filesize/1024/1024,2) . ' MB' : (($file->filesize/1024 > 10) ? round($file->filesize/1024) . ' KB' : round($file->filesize/1024, 1) . ' KB') }}
145-
144+
{{($file->filesize/1024 > 1000) ? round($file->filesize/1024/1024,2) . ' MB' : (($file->filesize/1024 > 10) ? round($file->filesize/1024) . ' KB' : round($file->filesize/1024, 1) . ' KB') }}
146145
<a href="#" onclick="return confirmDelete({{$file->id}})" class="del">D<i
147146
class="far fa-trash-alt ml-1 small text-secondary"></i></a>
148147
</div>

0 commit comments

Comments
 (0)