This commit is contained in:
2026-05-28 16:22:53 +02:00
parent 2a73a00e98
commit 9a003be98f
4 changed files with 4 additions and 2 deletions

View File

@@ -222,7 +222,7 @@
<th>{{ t('info_modal.file_size') || 'File Size' }}</th>
<td>{{ item.size }}</td>
</tr>
@if(item.width && item.height)
@if(item_has_dimensions)
<tr>
<th>{{ t('info_modal.dimensions') || 'Dimensions' }}</th>
<td>{{ item.width }} × {{ item.height }}</td>

View File

@@ -196,7 +196,7 @@
<th>{{ t('info_modal.file_size') || 'File Size' }}</th>
<td>{{ item.size }}</td>
</tr>
@if(item.width && item.height)
@if(item_has_dimensions)
<tr>
<th>{{ t('info_modal.dimensions') || 'Dimensions' }}</th>
<td>{{ item.width }} × {{ item.height }}</td>