diff options
Diffstat (limited to 'csit.infra.dash/app/cdash/stats/layout.py')
-rw-r--r-- | csit.infra.dash/app/cdash/stats/layout.py | 48 |
1 files changed, 20 insertions, 28 deletions
diff --git a/csit.infra.dash/app/cdash/stats/layout.py b/csit.infra.dash/app/cdash/stats/layout.py index 56b24e045a..4e7b72e06f 100644 --- a/csit.infra.dash/app/cdash/stats/layout.py +++ b/csit.infra.dash/app/cdash/stats/layout.py @@ -331,13 +331,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-dut", - "DUT" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-dut", + "DUT" + )), dbc.RadioItems( id="ri-duts", inline=True, @@ -355,13 +353,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-ttype", - "Test Type" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-ttype", + "Test Type" + )), dbc.RadioItems( id="ri-ttypes", inline=True, @@ -379,13 +375,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-cadence", - "Cadence" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-cadence", + "Cadence" + )), dbc.RadioItems( id="ri-cadences", inline=True, @@ -403,13 +397,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-tbed", - "Test Bed" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-tbed", + "Test Bed" + )), dbc.Select( id="dd-tbeds", placeholder="Select a test bed...", |