From baf55d1fd9c99ad3cfd6554168e571a45a1bb744 Mon Sep 17 00:00:00 2001 From: Felipe Martinez Date: Wed, 30 Oct 2024 01:36:23 +0100 Subject: [PATCH] Rename stop button to pause --- frontend/wasm/src/components/Emulator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/wasm/src/components/Emulator.vue b/frontend/wasm/src/components/Emulator.vue index 81a2b4a..3fe8144 100644 --- a/frontend/wasm/src/components/Emulator.vue +++ b/frontend/wasm/src/components/Emulator.vue @@ -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