mirror of
https://github.com/openwrt/luci.git
synced 2025-12-26 13:26:20 +04:00
luci-base: form.js: remove stray <br> elements from section placeholder
Theme CSS styles shoudl take care of introducing padding as needed. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
@@ -2273,10 +2273,7 @@ var CBITypedSection = CBIAbstractSection.extend(/** @lends LuCI.form.TypedSectio
|
||||
|
||||
/** @private */
|
||||
renderSectionPlaceholder: function() {
|
||||
return E([
|
||||
E('em', _('This section contains no values yet')),
|
||||
E('br'), E('br')
|
||||
]);
|
||||
return E('em', _('This section contains no values yet'));
|
||||
},
|
||||
|
||||
/** @private */
|
||||
|
||||
Reference in New Issue
Block a user