Skip to content

Commit bac725f

Browse files
authored
dashboard: Fix incorrect alert message for intervalMs validation in circuit breaker rule dialog (alibaba#2483)
* fix the degrade_service.js alert message on line 77, changed "统计窗口市场不能超过 120 分钟" to "统计窗口时长最大 120s"
1 parent f7abd04 commit bac725f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentinel-dashboard/src/main/webapp/resources/app/scripts/services/degrade_service.js

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

0 commit comments

Comments
 (0)