From 9067d3d3abd5fdd09cfd67b5149effdea9659c0d Mon Sep 17 00:00:00 2001 From: gSpot Date: Fri, 1 Aug 2025 21:40:01 +0300 Subject: [PATCH] luci-app-internet-detector: Fixed default values. --- .../luci-static/resources/view/internet-detector.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/luci-app-internet-detector/htdocs/luci-static/resources/view/internet-detector.js b/luci-app-internet-detector/htdocs/luci-static/resources/view/internet-detector.js index 9316e30..2f4d796 100644 --- a/luci-app-internet-detector/htdocs/luci-static/resources/view/internet-detector.js +++ b/luci-app-internet-detector/htdocs/luci-static/resources/view/internet-detector.js @@ -1049,7 +1049,7 @@ return view.extend({ 'mod_network_restart_attempt_interval', _('Attempt interval'), _('Interval between network restarts.') ); - o.default = '15'; + o.default = '60'; o.rmempty = false; o.modalonly = true; @@ -1135,7 +1135,7 @@ return view.extend({ 'mod_modem_restart_attempt_interval', _('Attempt interval'), _('Interval between modem restarts.') ); - o.default = '15'; + o.default = '60'; o.rmempty = false; o.modalonly = true; @@ -1591,7 +1591,7 @@ return view.extend({ 'mod_user_scripts_up_script_attempt_interval', _('Attempt interval'), _('Interval between up-script runs.') ); - o.default = '15'; + o.default = '60'; o.rmempty = false; o.modalonly = true; @@ -1650,7 +1650,7 @@ return view.extend({ 'mod_user_scripts_down_script_attempt_interval', _('Attempt interval'), _('Interval between down-script runs.') ); - o.default = '15'; + o.default = '60'; o.rmempty = false; o.modalonly = true;