Skip to content

Commit

Permalink
perf: fix display
Browse files Browse the repository at this point in the history
  • Loading branch information
bkleiner committed Dec 31, 2021
1 parent 16fda1a commit 5afc2c9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/views/Perf.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
<template>
<b-container>
<b-row>
<b-col v-for="(counter, index) in perf.counters" :key="'counter' + index" sm="6">
<b-col
v-for="(counter, index) in perf.counters"
:key="'counter' + index"
sm="6"
>
<RealtimePlot
:title="counters[index]"
:axis="['min', 'max', 'current']"
:input="counter"
:transform="(v) => v / 84"
></RealtimePlot>
</b-col>
</b-row>
Expand Down

0 comments on commit 5afc2c9

Please sign in to comment.