From 29b1aabe0b7e37c9200be214439e8b0032ad763e Mon Sep 17 00:00:00 2001 From: shiziyuan9527 Date: Mon, 20 Jul 2020 22:37:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=89=A7=E8=A1=8C=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E7=94=A8=E4=BE=8B=E5=85=B3=E8=81=94=E7=9A=84=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E7=94=9F=E6=88=90=E7=9A=84=E6=8A=A5=E5=91=8A=E8=A7=A6=E5=8F=91?= =?UTF-8?q?=E6=96=B9=E5=BC=8F=E4=B8=BA=E7=A9=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../track/plan/view/comonents/test/PerformanceTestDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/business/components/track/plan/view/comonents/test/PerformanceTestDetail.vue b/frontend/src/business/components/track/plan/view/comonents/test/PerformanceTestDetail.vue index ab90ba7d91..4b326ebf8e 100644 --- a/frontend/src/business/components/track/plan/view/comonents/test/PerformanceTestDetail.vue +++ b/frontend/src/business/components/track/plan/view/comonents/test/PerformanceTestDetail.vue @@ -103,7 +103,7 @@ } }, runTest() { - this.result = this.$post(this.runPath, {id: this.test.id}, (response) => { + this.result = this.$post(this.runPath, {id: this.test.id, triggerMode: 'MANUAL'}, (response) => { this.$success(this.$t('load_test.is_running')); this.$emit('runTest', response.data); });