Skip to content

Commit

Permalink
Add proper formatting for flashsize output
Browse files Browse the repository at this point in the history
  • Loading branch information
tbnobody committed May 28, 2024
1 parent 5761e9f commit e211dd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/components/HardwareInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit e211dd5

Please sign in to comment.