diff --git a/api-test/frontend/src/business/automation/scenario/component/ApiScenarioComponent.vue b/api-test/frontend/src/business/automation/scenario/component/ApiScenarioComponent.vue index 1d48d1462e..9193c7c035 100644 --- a/api-test/frontend/src/business/automation/scenario/component/ApiScenarioComponent.vue +++ b/api-test/frontend/src/business/automation/scenario/component/ApiScenarioComponent.vue @@ -137,7 +137,7 @@ export default { }, watch: { message() { - if (this.message === 'STOPPED') { + if (['STOPPED', 'STOP'].includes(this.message.toUpperCase())) { this.scenario.run = false; } this.reload();