diff options
author | Tibor Frank <tifrank@cisco.com> | 2024-03-12 09:03:05 +0000 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2024-03-12 09:03:05 +0000 |
commit | 540b27dbf9befcf589f5f572e8aac909f1738b51 (patch) | |
tree | 09b2edf6f51a62ab58495883ce1aa94a622055f2 /csit.infra.dash/app/cdash/stats/layout.py | |
parent | 0ca1dcc08772c39ea98fb304ce06ab794b65166c (diff) |
C-Dash: Add tooltips
Change-Id: I00cf78e2e777fa96754f7b06aab02a8bf8682da5
Signed-off-by: Tibor Frank <tifrank@cisco.com>
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...", |