diff --git a/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/project/server_groups/panel.py b/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/project/server_groups/panel.py index 9d336c37..5a36fbe9 100755 --- a/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/project/server_groups/panel.py +++ b/starlingx-dashboard/starlingx-dashboard/starlingx_dashboard/dashboards/project/server_groups/panel.py @@ -30,13 +30,13 @@ class ServerGroups(horizon.Panel): permissions = ('openstack.services.platform',) def allowed(self, context): - if not base.is_service_enabled(context['request'], 'platform'): + if not base.is_service_enabled(context['request'], 'compute'): return False else: return super(ServerGroups, self).allowed(context) def nav(self, context): - if not base.is_service_enabled(context['request'], 'platform'): + if not base.is_service_enabled(context['request'], 'compute'): return False else: return True