diff --git a/frontend/src/business/components/performance/test/EditPerformanceTest.vue b/frontend/src/business/components/performance/test/EditPerformanceTest.vue index c4fe35f1dc..30168db9c5 100644 --- a/frontend/src/business/components/performance/test/EditPerformanceTest.vue +++ b/frontend/src/business/components/performance/test/EditPerformanceTest.vue @@ -345,13 +345,11 @@ export default { this.$refs.basicConfig.threadGroups = threadGroups; this.$refs.pressureConfig.threadGroups = threadGroups; - threadGroups.forEach(tg => { - handler.calculateChart(tg); - }) + handler.calculateTotalChart(); }, tgTypeChange(threadGroup) { let handler = this.$refs.pressureConfig; - handler.calculateChart(threadGroup); + handler.calculateTotalChart(); } } } diff --git a/frontend/src/business/components/performance/test/components/ExistFiles.vue b/frontend/src/business/components/performance/test/components/ExistFiles.vue index ad48447019..224c874960 100644 --- a/frontend/src/business/components/performance/test/components/ExistFiles.vue +++ b/frontend/src/business/components/performance/test/components/ExistFiles.vue @@ -232,7 +232,7 @@ export default { callback(); } else { - this.$error(this.$t('load_test.project_file_exist')); + this.$error(this.$t('load_test.project_file_exist') + ', name: ' + file.name); } }); },