Skip to content

Commit

Permalink
Fix CPU bar not shown in Nodes table if cpu=0%
Browse files Browse the repository at this point in the history
  • Loading branch information
hchargois committed Apr 24, 2024
1 parent be4c963 commit 140c5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/nodes/NodesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<span v-if="row.load_1m">{{ row.load_1m }} / {{ row.load_5m }} / {{ row.load_15m }}</span>
</td>
<td>
<div v-if="row.cpu">
<div v-if="!isNaN(row.cpu)">
{{ row.cpu }}%
<node-percent-progress :value="row.cpu" class="q-mt-xs" />
</div>
Expand Down

0 comments on commit 140c5a9

Please sign in to comment.