diff --git a/frontend/src/business/components/api/automation/scenario/component/PluginComponent.vue b/frontend/src/business/components/api/automation/scenario/component/PluginComponent.vue index 5d32c37824..a6510bf95a 100644 --- a/frontend/src/business/components/api/automation/scenario/component/PluginComponent.vue +++ b/frontend/src/business/components/api/automation/scenario/component/PluginComponent.vue @@ -36,25 +36,28 @@ - + {{ $t('api_test.definition.request.pre_operation') }}
{{ request.preSize }}
- +
- + {{ $t('api_test.definition.request.post_operation') }}
{{ request.postSize }}
- +
- + {{ $t('api_test.definition.request.assertions_rule') }}
@@ -62,7 +65,8 @@
- +
@@ -201,6 +205,7 @@ export default { ), pluginName: "", response: {}, + showOther: true } }, computed: { @@ -236,6 +241,9 @@ export default { } this.data = this.request; this.pluginName = this.request.stepName ? this.request.stepName : this.request.type; + if (this.request.type === 'GenericController') { + this.showOther = false; + } if (this.request.hashTree) { this.initStepSize(this.request.hashTree); this.historicalDataProcessing(this.request.hashTree);