Skip to content

Commit

Permalink
Make node cell graphs equal in size (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
moshe authored Dec 28, 2019
1 parent 71e4017 commit 693ac44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/components/ShardsGrid/Cells/NodeCell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@
</v-list>
</v-menu>
<v-layout style="font-size: 8px" class="pt-1">
<v-flex>
<v-flex style="flex: 1">
<node-stat-bar :metric="metrics.heapPercent" name="HEAP" />
</v-flex>
<v-flex class="pl-1">
<v-flex class="pl-1" style="flex: 1">
<node-stat-bar :metric="metrics.diskPercent" name="DISK" />
</v-flex>
<v-flex class="pl-1">
<v-flex class="pl-1" style="flex: 1">
<node-stat-bar :metric="metrics.CPUPercent" name="CPU" />
</v-flex>
<v-flex class="pl-1">
<v-flex class="pl-1" style="flex: 1">
<node-stat-bar :metric="metrics.load1Percent" name="LOAD" />
</v-flex>
</v-layout>
Expand Down

0 comments on commit 693ac44

Please sign in to comment.