From 0252fb9da783b8e831108dd7248ed747d8b33229 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 22 Sep 2011 01:41:26 +0000 Subject: [PATCH] applications/luci-vnstat: filter inactive interfaces in preferences --- applications/luci-vnstat/luasrc/model/cbi/vnstat.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua b/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua index 5c5e8f7aa..38b06ba9a 100644 --- a/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua +++ b/applications/luci-vnstat/luasrc/model/cbi/vnstat.lua @@ -56,9 +56,11 @@ s.anonymous = true s.addremove = false mon_ifaces = s:option(Value, "interface", translate("Monitor selected interfaces")) -mon_ifaces.template = "cbi/network_ifacelist" -mon_ifaces.widget = "checkbox" -mon_ifaces.cast = "table" +mon_ifaces.template = "cbi/network_ifacelist" +mon_ifaces.widget = "checkbox" +mon_ifaces.cast = "table" +mon_ifaces.noinactive = true +mon_ifaces.nocreate = true function mon_ifaces.write(self, section, val) local i -- 2.25.1