Skip to content

Commit

Permalink
feat(perf tab): add start/stop button label, closes #920
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Mar 26, 2019
1 parent 800f3db commit 591c1c2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/devtools/views/perf/PerfTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@
v-if="!$shared.recordPerf"
v-tooltip="'Start benchmark'"
icon-left="lens"
class="icon-button flat"
class="flat"
@click="start()"
/>
>
Start
</VueButton>
<VueButton
v-else
v-tooltip="'Stop benchmark'"
icon-left="lens"
class="icon-button flat stop-button"
class="flat stop-button"
@click="stop()"
/>
>
Stop
</VueButton>

<VueSelect
v-model="currentBenchmarkModel"
Expand Down

0 comments on commit 591c1c2

Please sign in to comment.