From a53dc0413f708ff81aeed8f36c254193634e1938 Mon Sep 17 00:00:00 2001 From: Tasos Papaioannou Date: Thu, 30 Jan 2025 13:19:00 -0500 Subject: [PATCH] Move "Insights" navigation menu items from under "Configure" to its own top-level entry --- airgun/entities/cloud_insights.py | 4 ++-- airgun/entities/cloud_inventory.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/airgun/entities/cloud_insights.py b/airgun/entities/cloud_insights.py index b5e6649d5..217a4e4d4 100644 --- a/airgun/entities/cloud_insights.py +++ b/airgun/entities/cloud_insights.py @@ -57,7 +57,7 @@ class SaveCloudTokenView(NavigateStep): @retry_navigation def step(self, *args, **kwargs): - self.view.menu.select('Configure', 'Insights') + self.view.menu.select('Insights') @navigator.register(CloudInsightsEntity, 'All') @@ -68,4 +68,4 @@ class ShowCloudInsightsView(NavigateStep): @retry_navigation def step(self, *args, **kwargs): - self.view.menu.select('Configure', 'Insights', 'Recommendations') + self.view.menu.select('Insights', 'Recommendations') diff --git a/airgun/entities/cloud_inventory.py b/airgun/entities/cloud_inventory.py index cbd51b8b5..b2292c50d 100644 --- a/airgun/entities/cloud_inventory.py +++ b/airgun/entities/cloud_inventory.py @@ -56,4 +56,4 @@ class ShowCloudInventoryListView(NavigateStep): @retry_navigation def step(self, *args, **kwargs): - self.view.menu.select('Configure', 'Insights', 'Inventory Upload') + self.view.menu.select('Insights', 'Inventory Upload')