Skip to content

Commit

Permalink
feat: fix total memory display
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Mar 21, 2024
1 parent 7098efe commit 9a6c307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<br/>
Total Logical Cores: {{status.total_logical_cores}}
<br/>
Total Memory: {{status.total_memory_bytes && prettyBytes(Number(status.total_memory_bytes))}}
Total Memory: {{status.total_memory_bytes && prettyBytes(Number(status.total_memory_bytes), { binary: true })}}
<br/>
</v-card-text>
</v-card>
Expand Down

0 comments on commit 9a6c307

Please sign in to comment.