File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3158,7 +3158,7 @@ example2.com
31583158 <input type="text" style="width: 5em" maxlength="9" v-model="captchaMaxFails" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
31593159 <span class="ui label">次</span>
31603160 </div>
3161- <p class="comment">允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单;如果为空或者为0表示默认。</p>
3161+ <p class="comment"><span v-if="captchaMaxFails > 0 && captchaMaxFails < 5" class="red">建议填入一个不小于5的数字,以减少误判几率。</span> 允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单;如果为空或者为0表示默认。</p>
31623162 </td>
31633163 </tr>
31643164 <tr v-if="actionCode == 'captcha'">
@@ -5386,7 +5386,7 @@ example2.com
53865386 <input type="text" style="width: 5em" maxlength="9" v-model="options.maxFails" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
53875387 <span class="ui label">次</span>
53885388 </div>
5389- <p class="comment">允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单。如果为空或者为0,表示不限制。</p>
5389+ <p class="comment"><span v-if="options.maxFails > 0 && options.maxFails < 5" class="red">建议填入一个不小于5的数字,以减少误判几率。</span> 允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单。如果为空或者为0,表示不限制。</p>
53905390 </td>
53915391 </tr>
53925392 <tr>
Original file line number Diff line number Diff line change @@ -9362,7 +9362,7 @@ Vue.component("http-firewall-actions-box", {
93629362 <input type="text" style="width: 5em" maxlength="9" v-model="captchaMaxFails" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
93639363 <span class="ui label">次</span>
93649364 </div>
9365- <p class="comment">允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单;如果为空或者为0表示默认。</p>
9365+ <p class="comment"><span v-if="captchaMaxFails > 0 && captchaMaxFails < 5" class="red">建议填入一个不小于5的数字,以减少误判几率。</span> 允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单;如果为空或者为0表示默认。</p>
93669366 </td>
93679367 </tr>
93689368 <tr v-if="actionCode == 'captcha'">
@@ -15302,7 +15302,7 @@ Vue.component("http-firewall-captcha-options", {
1530215302 <input type="text" style="width: 5em" maxlength="9" v-model="options.maxFails" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
1530315303 <span class="ui label">次</span>
1530415304 </div>
15305- <p class="comment">允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单。如果为空或者为0,表示不限制。</p>
15305+ <p class="comment"><span v-if="options.maxFails > 0 && options.maxFails < 5" class="red">建议填入一个不小于5的数字,以减少误判几率。</span> 允许用户失败尝试的最多次数,超过这个次数将被自动加入黑名单。如果为空或者为0,表示不限制。</p>
1530615306 </td>
1530715307 </tr>
1530815308 <tr>
You can’t perform that action at this time.
0 commit comments