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/report/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/report/layout.py')
-rw-r--r-- | csit.infra.dash/app/cdash/report/layout.py | 72 |
1 files changed, 30 insertions, 42 deletions
diff --git a/csit.infra.dash/app/cdash/report/layout.py b/csit.infra.dash/app/cdash/report/layout.py index 400fd60f38..1978e7abae 100644 --- a/csit.infra.dash/app/cdash/report/layout.py +++ b/csit.infra.dash/app/cdash/report/layout.py @@ -354,13 +354,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-release", - "CSIT Release" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-release", + "CSIT Release" + )), dbc.Select( id={"type": "ctrl-dd", "index": "rls"}, placeholder="Select a Release...", @@ -382,13 +380,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.Select( id={"type": "ctrl-dd", "index": "dut"}, placeholder="Select a Device under Test..." @@ -403,13 +399,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-dut-ver", - "DUT Version" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-dut-ver", + "DUT Version" + )), dbc.Select( id={"type": "ctrl-dd", "index": "dutver"}, placeholder=\ @@ -425,13 +419,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-area", - "Area" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-area", + "Area" + )), dbc.Select( id={"type": "ctrl-dd", "index": "area"}, placeholder="Select an Area..." @@ -446,13 +438,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-test", - "Test" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-test", + "Test" + )), dbc.Select( id={"type": "ctrl-dd", "index": "test"}, placeholder="Select a Test..." @@ -467,13 +457,11 @@ class Layout: children=[ dbc.InputGroup( [ - dbc.InputGroupText( - children=show_tooltip( - self._tooltips, - "help-infra", - "Infra" - ) - ), + dbc.InputGroupText(show_tooltip( + self._tooltips, + "help-infra", + "Infra" + )), dbc.Select( id={"type": "ctrl-dd", "index": "phy"}, placeholder=\ |