projects
/
project
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a163fec
)
luci-base: cbi.js: properly handle falsy values in cbi_update_table()
author
Jo-Philipp Wich
<jo@mein.io>
Tue, 23 Nov 2021 18:11:34 +0000
(19:11 +0100)
committer
Jo-Philipp Wich
<jo@mein.io>
Tue, 23 Nov 2021 18:12:18 +0000
(19:12 +0100)
Fixes: #5544
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-base/htdocs/luci-static/resources/cbi.js
patch
|
blob
|
history
diff --git
a/modules/luci-base/htdocs/luci-static/resources/cbi.js
b/modules/luci-base/htdocs/luci-static/resources/cbi.js
index aef64d577eb49b2749549f0075a39f2b04c755db..9200954d1e791f088f9bf66bab9a10637e1435f1 100644
(file)
--- a/
modules/luci-base/htdocs/luci-static/resources/cbi.js
+++ b/
modules/luci-base/htdocs/luci-static/resources/cbi.js
@@
-777,7
+777,7
@@
function cbi_update_table(table, data, placeholder) {
var td = trow.appendChild(E('td', {
'class': titles[i].className,
'data-title': (text !== '') ? text : null
- },
row[i] ||
''));
+ },
(row[i] != null) ? row[i] :
''));
td.classList.remove('th');
td.classList.add('td');