dashboard: Fix incorrect alert message for intervalMs validation in circuit breaker rule dialog (#2483)

* fix the degrade_service.js alert message on line 77, changed "统计窗口市场不能超过 120 分钟" to "统计窗口时长最大 120s"
This commit is contained in:
Reagan lee 2022-01-19 09:46:58 +08:00 committed by GitHub
parent 794530f533
commit 2920efc33b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ app.service('DegradeService', ['$http', function ($http) {
return false;
}
if (rule.statIntervalMs !== undefined && rule.statIntervalMs > 60 * 1000 * 2) {
alert('统计窗口时长不能超过 120 分钟');
alert('统计窗口时长最大 120s');
return false;
}
// 异常比率类型.