luci-mod-network: fix horizontal scrolling in the bridge vlan filter matrix

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2021-06-09 21:55:14 +02:00
parent e3bf521edb
commit ded6e53bcd

View file

@ -789,9 +789,7 @@ return baseclass.extend({
o.renderWidget = function(/* ... */) {
return form.SectionValue.prototype.renderWidget.apply(this, arguments).then(L.bind(function(node) {
node.style.overflowX = 'auto';
node.style.overflowY = 'visible';
node.style.paddingBottom = '100px';
node.style.marginBottom = '-100px';
node.style.overflowY = 'hidden';
return node;
}, this));