From: Mathias Kresin Date: Sat, 13 Jan 2018 06:44:29 +0000 (+0100) Subject: luci-mod-admin-full: set 0 db DSL SNR offset by default X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=cfdeaa91fa6be17069eb215df73dd6fc840df122;p=project%2Fluci.git luci-mod-admin-full: set 0 db DSL SNR offset by default If no DSL SNR offset is set for the dsl line the first entry from the dropdown list is pre-selected by default, which would apply a -10 db offset by default. Pre-select the 0 db option if nothing else is specified in the uci config files. Signed-off-by: Mathias Kresin --- diff --git a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua index 57451181e1..2bfe974af1 100644 --- a/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua +++ b/modules/luci-mod-admin-full/luasrc/model/cbi/admin_network/network.lua @@ -56,6 +56,7 @@ if fs.access("/etc/init.d/dsl_control") then line_mode:value("vdsl", translate("VDSL")) ds_snr = dsl:option(ListValue, "ds_snr_offset", translate("Downstream SNR offset")) + ds_snr.default = "0" for i = -100, 100, 5 do ds_snr:value(i, translatef("%.1f dB", i / 10)) end