Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/luci.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortew42 <2049715+tew42@users.noreply.github.com>2022-01-02 12:45:18 +0300
committerHannu Nyman <hannu.nyman@iki.fi>2022-01-02 12:45:18 +0300
commit8572ae032f336f49eb9ed5c3843bce57542c0c05 (patch)
tree8d0da514fd18d9b58b88e55013d580dfd0510181
parent3b951ce55ce4fd1b5b5f09854d067e38eda4c699 (diff)
luci-app-statistics: ping module, Update MaxMissed data type
MaxMissed was implemented with positive integers only, whereas I think it should also allow the option of "-1" (disabled state) Signed-off-by: tew42 <2049715+tew42@users.noreply.github.com> [slightly edited the proposed text] Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
-rw-r--r--applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js
index e08ff6497b..0c827e8a0b 100644
--- a/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js
+++ b/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/ping.js
@@ -34,9 +34,9 @@ return baseclass.extend({
o.depends('enable', '1');
o=s.option(form.Value,'MaxMissed',_('Maximum Missed Packets'),
- _('When a host has not replied to this number of packets in a row, re-resolve the hostname in DNS. Useful for dynamic DNS hosts.'));
- o.placeholder = '10';
- o.datatype = 'uinteger';
+ _('When a host has not replied to this number of packets in a row, re-resolve the hostname in DNS. Useful for dynamic DNS hosts. Default is -1 = disabled.'));
+ o.placeholder = '-1';
+ o.datatype = 'and(min(-1),integer)'
o.optional = true;
o.depends('enable', '1');
},