diff --git a/frontend/src/business/components/performance/test/components/PerformancePressureConfig.vue b/frontend/src/business/components/performance/test/components/PerformancePressureConfig.vue index 60fed48a87..0229d18600 100644 --- a/frontend/src/business/components/performance/test/components/PerformancePressureConfig.vue +++ b/frontend/src/business/components/performance/test/components/PerformancePressureConfig.vue @@ -453,8 +453,8 @@ export default { tg.threadType === 'ITERATION') { continue; } - if (tg.duration < tg.rampUpTime) { - tg.rampUpTime = tg.duration; + if (this.getDuration(tg) < tg.rampUpTime) { + tg.rampUpTime = this.getDuration(tg); } if (tg.rampUpTime < tg.step) { tg.step = tg.rampUpTime;