luci-mod-network: fix dropdown clipping on diagnostics page

The default overflow hidden style for table cell elements breaks action
dropdowns on the diagnostics page.

Fixes: #6379
Fixes: 5f2d305476 ("luci-mod-network: convert diagnostic page to LuCI look and feel")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2023-05-30 09:19:20 +02:00
parent f3287c8dac
commit 9b12a48c3f

View file

@ -76,7 +76,7 @@ return view.extend({
var table = E('table', { 'class': 'table' }, [ var table = E('table', { 'class': 'table' }, [
E('tr', { 'class': 'tr' }, [ E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td left' }, [ E('td', { 'class': 'td left', 'style': 'overflow:initial' }, [
E('input', { E('input', {
'style': 'margin:5px 0', 'style': 'margin:5px 0',
'type': 'text', 'type': 'text',
@ -99,7 +99,7 @@ return view.extend({
]) ])
]), ]),
E('td', { 'class': 'td left' }, [ E('td', { 'class': 'td left', 'style': 'overflow:initial' }, [
E('input', { E('input', {
'style': 'margin:5px 0', 'style': 'margin:5px 0',
'type': 'text', 'type': 'text',