fixup! privatewifi use template method

This commit is contained in:
Maciej Krüger 2022-05-27 15:58:35 +02:00 committed by Alexander List
parent dcb8efd90f
commit 810e94a647

View File

@ -26,13 +26,12 @@ end
local enabled = s:option(Flag, "enabled", translate("Enabled"))
enabled.default = uci:get('wireless', primary_iface) and not uci:get_bool('wireless', primary_iface, "disabled")
local warning = s:template('model/warning')
if mesh_on_wan and enabled.data then
local w = Warning()
w:setcontent(translate(
w.content = translate(
'Meshing on WAN interface is enabled.' ..
'This can lead to problems.'
))
s:append(w)
)
end
local ssid = s:option(Value, "ssid", translate("Name (SSID)"))