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 22fda737ba..96c22f6125 100644 --- a/api-test/frontend/src/business/automation/scenario/component/ApiScenarioComponent.vue +++ b/api-test/frontend/src/business/automation/scenario/component/ApiScenarioComponent.vue @@ -135,7 +135,7 @@ export default { }, watch: { message() { - if (this.message === 'STOPPED') { + if (['STOPPED', 'STOP'].includes(this.message.toUpperCase())) { this.scenario.run = false; } this.reload();