Skip to content

Commit

Permalink
Correctly display memory stats in sysinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
steersbob committed Sep 29, 2023
1 parent eeb5a72 commit dae0c22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/spark/features/SysInfo/SysInfoWidget.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ export default defineComponent({
tag-class="q-gutter-y-xs"
>
<div>Total: {{ block.data.memoryFree }}</div>
<div>Contiguous: {{ block.data.memoryFree }}</div>
<div>Lowest: {{ block.data.memoryFree }}</div>
<div>Contiguous: {{ block.data.memoryFreeContiguous }}</div>
<div>Lowest: {{ block.data.memoryFreeLowest }}</div>
</LabeledField>
</div>
</div>
Expand Down

0 comments on commit dae0c22

Please sign in to comment.