From 63dcc057d37285840295e440cd92af7eb4a98959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Mart=C3=ADn?= Date: Mon, 8 Apr 2024 17:50:48 +0200 Subject: [PATCH] feat(dashboard): add correct label for each dropdown (#3700) --- dashboard/lib/dropdowns.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dashboard/lib/dropdowns.py b/dashboard/lib/dropdowns.py index da6d34621b..3a5ec4463d 100644 --- a/dashboard/lib/dropdowns.py +++ b/dashboard/lib/dropdowns.py @@ -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(