From: Hannu Nyman Date: Sun, 28 Sep 2025 06:29:49 +0000 (+0300) Subject: luci-app-keepalived: fix typo in option name: fail -> fall X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=f51492d61038ed18ceccdfd5672da80515a0b0d3;p=openwrt-luci.git luci-app-keepalived: fix typo in option name: fail -> fall Fix typo in the option name: 'fall' instead of 'fail' Fixes #7965 Signed-off-by: Hannu Nyman --- diff --git a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/script.js b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/script.js index 16a5572011..6bc8156ee8 100644 --- a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/script.js +++ b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/script.js @@ -88,7 +88,7 @@ return view.extend({ o.optional = true; o.datatype = 'uinteger'; - o = s.option(form.Value, 'fail', _('Fail'), + o = s.option(form.Value, 'fall', _('Fall'), _('Required number of successes for KO transition')); o.optional = true; o.datatype = 'uinteger'; diff --git a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/servers.js b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/servers.js index 55e6403a85..80ead84216 100644 --- a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/servers.js +++ b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/servers.js @@ -112,7 +112,7 @@ return view.extend({ o.datatype = 'uinteger'; o.modalonly = true; - o = s.taboption('advanced', form.Value, 'fail', _('Fail'), + o = s.taboption('advanced', form.Value, 'fall', _('Fall'), _('Required number of successes for KO transition')); o.optional = true; o.datatype = 'uinteger';