luci-base: form.js: remove stray `<br>` elements from section placeholder
[project/luci.git] / modules / luci-base / htdocs / luci-static / resources / form.js
index a09c805938c679c4d8256ef5873704a3e0db93e3..58f5a07fd6d41d225dc4446dd88f8a4b6832c7c0 100644 (file)
@@ -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 */