luci-mod-network: move auto option to general tab 2670/head
authorFlorian Eckert <fe@dev.tdt.de>
Fri, 6 Apr 2018 08:49:16 +0000 (10:49 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Wed, 10 Apr 2019 11:45:27 +0000 (13:45 +0200)
Since openwrt-18.06 the auto option is set/unset if we press
connect/disconnect on the interface page. So I think we should move this
to the general tab so that we see at once if this is started on boot or
not.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua

index 5b230795c3abd6072cc1df3ed92405bbee4d1d4e..de7b8676e8f1d83e8da555c32112626f07909d4d 100644 (file)
@@ -247,7 +247,7 @@ for _, pr in ipairs(nw:get_protocols()) do
 end
 
 
-auto = s:taboption("advanced", Flag, "auto", translate("Bring up on boot"))
+auto = s:taboption("general", Flag, "auto", translate("Bring up on boot"))
 auto.default = (net:proto() == "none") and auto.disabled or auto.enabled
 
 delegate = s:taboption("advanced", Flag, "delegate", translate("Use builtin IPv6-management"))