From 80c624d6b744a66cfc08828cd7d534735f6438a1 Mon Sep 17 00:00:00 2001 From: fit2-zhao Date: Thu, 17 Dec 2020 19:30:25 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E6=8E=A5=E5=8F=A3=E8=87=AA=E5=8A=A8?= =?UTF-8?q?=E5=8C=96):=20=E4=BF=AE=E5=A4=8D=E6=89=A7=E8=A1=8C=E7=BC=BA?= =?UTF-8?q?=E9=99=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/post-processors/jsr223-post-processor/index.js | 1 + .../components/pre-processors/jsr223-pre-processor/index.js | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/src/business/components/api/definition/components/jmeter/components/post-processors/jsr223-post-processor/index.js b/frontend/src/business/components/api/definition/components/jmeter/components/post-processors/jsr223-post-processor/index.js index a3525aaff6..4513b66d0a 100644 --- a/frontend/src/business/components/api/definition/components/jmeter/components/post-processors/jsr223-post-processor/index.js +++ b/frontend/src/business/components/api/definition/components/jmeter/components/post-processors/jsr223-post-processor/index.js @@ -19,6 +19,7 @@ export default class JSR223PostProcessor extends PostProcessor { this.parameters = []; this.filename = undefined; this.cacheKey = true; + this.enable = true; this.script = undefined; } } diff --git a/frontend/src/business/components/api/definition/components/jmeter/components/pre-processors/jsr223-pre-processor/index.js b/frontend/src/business/components/api/definition/components/jmeter/components/pre-processors/jsr223-pre-processor/index.js index f73b7ee69b..7ea5082497 100644 --- a/frontend/src/business/components/api/definition/components/jmeter/components/pre-processors/jsr223-pre-processor/index.js +++ b/frontend/src/business/components/api/definition/components/jmeter/components/pre-processors/jsr223-pre-processor/index.js @@ -19,6 +19,7 @@ export default class JSR223PreProcessor extends PostProcessor { this.parameters = []; this.filename = undefined; this.cacheKey = undefined; + this.enable = true; this.script = undefined; } }