aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/dash/app/pal/trending
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2022-04-14 10:45:50 +0200
committerPeter Mikus <pmikus@cisco.com>2022-04-19 05:49:24 +0000
commit808613a09844882f121b173c2b6fccde3388a0ce (patch)
treed7cbf4b2d70119b2a5928239ec1f7c0c3288ca89 /resources/tools/dash/app/pal/trending
parentf32479a00fd731f8fa79266a1c8bae41c79f9b0d (diff)
feat(uti): Cover theme sync
Signed-off-by: Peter Mikus <pmikus@cisco.com> Change-Id: I8ffe4311a67790066fd82a5ac6c3661e95533693
Diffstat (limited to 'resources/tools/dash/app/pal/trending')
-rw-r--r--resources/tools/dash/app/pal/trending/layout.py27
1 files changed, 14 insertions, 13 deletions
diff --git a/resources/tools/dash/app/pal/trending/layout.py b/resources/tools/dash/app/pal/trending/layout.py
index 8d06ada49d..422488dd3b 100644
--- a/resources/tools/dash/app/pal/trending/layout.py
+++ b/resources/tools/dash/app/pal/trending/layout.py
@@ -184,6 +184,7 @@ class Layout:
dbc.NavItem(
dbc.NavLink(
"Continuous Performance Trending",
+ disabled=True,
external_link=True,
href="#"
)
@@ -256,30 +257,30 @@ class Layout:
class_name="g-0",
children=[
dbc.Label("Physical Test Bed Topology, NIC and Driver"),
- dcc.Dropdown(
+ dbc.Select(
id="dd-ctrl-phy",
+ className="p-2",
placeholder="Select a Physical Test Bed Topology...",
- multi=False,
- clearable=False,
options=[
{"label": k, "value": k} for k in self.spec_tbs.keys()
],
+ size="sm",
),
dbc.Label("Area"),
- dcc.Dropdown(
+ dbc.Select(
id="dd-ctrl-area",
+ className="p-2",
placeholder="Select an Area...",
disabled=True,
- multi=False,
- clearable=False,
+ size="sm",
),
dbc.Label("Test"),
- dcc.Dropdown(
+ dbc.Select(
id="dd-ctrl-test",
+ className="p-2",
placeholder="Select a Test...",
disabled=True,
- multi=False,
- clearable=False,
+ size="sm",
),
dbc.Row(
id="row-ctrl-core",
@@ -398,14 +399,14 @@ class Layout:
dbc.ButtonGroup(
[
dbc.Button(
- id="btn-sel-remove",
- children="Remove Selected",
+ id="btn-sel-remove-all",
+ children="Remove All",
color="secondary",
disabled=False
),
dbc.Button(
- id="btn-sel-remove-all",
- children="Remove All",
+ id="btn-sel-remove",
+ children="Remove Selected",
color="secondary",
disabled=False
),