diff --git a/framework/sdk-parent/frontend/src/components/environment/EnvironmentEdit.vue b/framework/sdk-parent/frontend/src/components/environment/EnvironmentEdit.vue index 5bc5d6a3b9..9dd018d8b3 100644 --- a/framework/sdk-parent/frontend/src/components/environment/EnvironmentEdit.vue +++ b/framework/sdk-parent/frontend/src/components/environment/EnvironmentEdit.vue @@ -449,6 +449,7 @@ export default { }) } environment.config.commonConfig.variables.forEach(variable => { + delete variable.showMore; if (variable.type === 'CSV' && variable.files.length === 0) { message = this.$t('api_test.automation.csv_warning'); return; diff --git a/project-management/frontend/src/business/menu/environment/components/EnvironmentEdit.vue b/project-management/frontend/src/business/menu/environment/components/EnvironmentEdit.vue index 59a82d41a7..82a30ee71c 100644 --- a/project-management/frontend/src/business/menu/environment/components/EnvironmentEdit.vue +++ b/project-management/frontend/src/business/menu/environment/components/EnvironmentEdit.vue @@ -449,6 +449,7 @@ export default { }) } environment.config.commonConfig.variables.forEach(variable => { + delete variable.showMore; if (variable.type === 'CSV' && variable.files.length === 0) { message = this.$t('api_test.automation.csv_warning'); return;