luci-mod-network: move auto option to general tab
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>
This commit is contained in:
parent
6c028c82e8
commit
c3f620eb13
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ for _, pr in ipairs(nw:get_protocols()) do
|
||||||
end
|
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
|
auto.default = (net:proto() == "none") and auto.disabled or auto.enabled
|
||||||
|
|
||||||
delegate = s:taboption("advanced", Flag, "delegate", translate("Use builtin IPv6-management"))
|
delegate = s:taboption("advanced", Flag, "delegate", translate("Use builtin IPv6-management"))
|
||||||
|
|
Loading…
Reference in a new issue