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:
parent
794530f533
commit
2920efc33b
|
|
@ -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;
|
||||
}
|
||||
// 异常比率类型.
|
||||
|
|
|
|||
Loading…
Reference in New Issue