add dimensions

This commit is contained in:
2026-05-28 16:02:16 +02:00
parent 9804376d30
commit 2a73a00e98
10 changed files with 226 additions and 9 deletions

View File

@@ -222,6 +222,12 @@
<th>{{ t('info_modal.file_size') || 'File Size' }}</th>
<td>{{ item.size }}</td>
</tr>
@if(item.width && item.height)
<tr>
<th>{{ t('info_modal.dimensions') || 'Dimensions' }}</th>
<td>{{ item.width }} × {{ item.height }}</td>
</tr>
@endif
<tr>
<th>{{ t('info_modal.mime_type') || 'MIME Type' }}</th>
<td><code>{{ item.mime }}</code></td>