Skip to content

Commit

Permalink
Rename stop button to pause
Browse files Browse the repository at this point in the history
  • Loading branch information
pipe01 committed Oct 30, 2024
1 parent 30e32e8 commit baf55d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/wasm/src/components/Emulator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ template(v-if="!isReady")
div.text-danger(v-if="isAborted") Emulator aborted

button.btn.btn-success(v-if="!isRunning" @click="start" :disabled="isAborted") Start
button.btn.btn-danger(v-else @click="stop" :disabled="isAborted") Stop
button.btn.btn-danger(v-else @click="stop" :disabled="isAborted") Pause
button.btn.btn-warning.mt-2(v-if="isStarted" @click="reset" :disabled="isAborted") Reset

.col-3
Expand Down

0 comments on commit baf55d1

Please sign in to comment.