From 1d4e171a24e8045a3187c71cd401dae1440fd4cf Mon Sep 17 00:00:00 2001 From: Rob Cresswell Date: Fri, 10 Mar 2017 12:48:47 +0000 Subject: [PATCH] Fix new volumes enabled files panel groups The new volumes panels in Admin had incorrect panel groups, causing a failure to load. Change-Id: I274e69b27af1b028b4f191817e9c86d3cc77de26 --- openstack_dashboard/enabled/_2320_admin_volumes_panel.py | 2 +- openstack_dashboard/enabled/_2340_admin_volume_types_panel.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openstack_dashboard/enabled/_2320_admin_volumes_panel.py b/openstack_dashboard/enabled/_2320_admin_volumes_panel.py index ebc979db08..204762076c 100644 --- a/openstack_dashboard/enabled/_2320_admin_volumes_panel.py +++ b/openstack_dashboard/enabled/_2320_admin_volumes_panel.py @@ -3,7 +3,7 @@ PANEL = 'volumes' # The slug of the dashboard the PANEL associated with. Required. PANEL_DASHBOARD = 'admin' # The slug of the panel group the PANEL is associated with. -PANEL_GROUP = 'volumes' +PANEL_GROUP = 'admin' # Python panel class of the PANEL to be added. ADD_PANEL = 'openstack_dashboard.dashboards.admin.volumes.panel.Volumes' diff --git a/openstack_dashboard/enabled/_2340_admin_volume_types_panel.py b/openstack_dashboard/enabled/_2340_admin_volume_types_panel.py index 8dd03668b6..943b0fe58e 100644 --- a/openstack_dashboard/enabled/_2340_admin_volume_types_panel.py +++ b/openstack_dashboard/enabled/_2340_admin_volume_types_panel.py @@ -3,7 +3,7 @@ PANEL = 'volume_types' # The slug of the dashboard the PANEL associated with. Required. PANEL_DASHBOARD = 'admin' # The slug of the panel group the PANEL is associated with. -PANEL_GROUP = 'volumes' +PANEL_GROUP = 'admin' # Python panel class of the PANEL to be added. ADD_PANEL = \