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:
parent
3be479446b
commit
e4e001b596
1 changed files with 1 additions and 4 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue