projects
/
oweals
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff58e81
)
libs/web: fix DynList template for empty values
author
Jo-Philipp Wich
<jow@openwrt.org>
Sat, 20 Nov 2010 18:24:17 +0000
(18:24 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Sat, 20 Nov 2010 18:24:17 +0000
(18:24 +0000)
libs/web/luasrc/view/cbi/dynlist.htm
patch
|
blob
|
history
diff --git
a/libs/web/luasrc/view/cbi/dynlist.htm
b/libs/web/luasrc/view/cbi/dynlist.htm
index 90f3f1e90575cb30e9318c0af769929ec23680ff..5914186c2da68ca64178e4252324a7481c9ff098 100644
(file)
--- 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") ..