Add proper formatting for flashsize output

This commit is contained in:
Thomas Basler 2024-05-28 21:37:20 +02:00
parent 5761e9facf
commit e211dd5be2

View File

@ -22,8 +22,8 @@
<tr>
<th>{{ $t('hardwareinfo.FlashSize') }}</th>
<td>
{{ systemStatus.flashsize }} {{ $t('hardwareinfo.Bytes') }}
({{ systemStatus.flashsize / 1024 / 1024 }} {{ $t('hardwareinfo.MegaBytes') }})
{{ $n(systemStatus.flashsize) }} {{ $t('hardwareinfo.Bytes') }}
({{ $n(systemStatus.flashsize / 1024 / 1024) }} {{ $t('hardwareinfo.MegaBytes') }})
</td>
</tr>
</tbody>