diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-20 18:24:17 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-20 18:24:17 +0000 |
commit | d79895c0c3d8ac11e34a59a60e11d304c01fb08f (patch) | |
tree | 7a4edb6d2e9f9730874fe66c2da9015e8409f16b | |
parent | ff58e81d18a23fcbdfea89044b0600bcdd2d06da (diff) |
libs/web: fix DynList template for empty values
-rw-r--r-- | libs/web/luasrc/view/cbi/dynlist.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/view/cbi/dynlist.htm b/libs/web/luasrc/view/cbi/dynlist.htm index 90f3f1e90..5914186c2 100644 --- a/libs/web/luasrc/view/cbi/dynlist.htm +++ b/libs/web/luasrc/view/cbi/dynlist.htm @@ -18,7 +18,7 @@ $Id$ local vals = self:cfgvalue(section) or {} for i=1, #vals + 1 do local val = vals[i] - if val and #val > 0 then + if (val and #val > 0) or (i == 1) then %> <input class="cbi-input-text" value="<%=pcdata(val)%>" onchange="cbi_d_update(this.id)" type="text"<%= attr("id", cbid .. "." .. i) .. attr("name", cbid) .. ifattr(self.size, "size") .. |