feat(dashboard): add correct label for each dropdown (#3700)

This commit is contained in:
Pedro Martín
2024-04-08 17:50:48 +02:00
committed by GitHub
parent 0bc16ee5ff
commit 63dcc057d3
+4 -4
View File
@@ -78,7 +78,7 @@ def create_region_dropdown(regions: list) -> html.Div:
return html.Div(
[
html.Label(
"Region:",
"Region / Location / Namespace :",
className="text-prowler-stone-900 font-bold text-sm",
),
dcc.Dropdown(
@@ -104,7 +104,7 @@ def create_region_dropdown_compliance(regions: list) -> html.Div:
return html.Div(
[
html.Label(
"Region:",
"Region / Location / Namespace :",
className="text-prowler-stone-900 font-bold text-sm",
),
dcc.Dropdown(
@@ -130,7 +130,7 @@ def create_account_dropdown(accounts: list) -> html.Div:
return html.Div(
[
html.Label(
"Account:",
"Account / Subscription / Project / Cluster :",
className="text-prowler-stone-900 font-bold text-sm",
),
dcc.Dropdown(
@@ -156,7 +156,7 @@ def create_account_dropdown_compliance(accounts: list) -> html.Div:
return html.Div(
[
html.Label(
"Account:",
"Account / Subscription / Project / Cluster :",
className="text-prowler-stone-900 font-bold text-sm",
),
dcc.Dropdown(