From: Florian Eckert Date: Tue, 12 Apr 2022 08:05:34 +0000 (+0200) Subject: luci-mod-system: Set description to blank if the trigger has none X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=3de544600385ca365c833aec99f89113daa12292;p=openwrt-luci.git luci-mod-system: Set description to blank if the trigger has none In this case the cbi description div will not be generated and when switching to another trigger later, attempts to change the description div contents will fail. Signed-off-by: Florian Eckert --- diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js index c0cbd7a4f1..d6f51d1f9b 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js @@ -89,7 +89,7 @@ return view.extend({ var plugin = plugins[i]; if ( plugin.name === value ) this.map.findElement('id', 'cbid.system.%s.trigger'.format(section)) - .nextElementSibling.innerHTML = plugin.form.description || ''; + .nextElementSibling.innerHTML = plugin.form.description || ' '; } } o.load = function(section_id) {