diff --git a/openstack_dashboard/dashboards/project/databases/tables.py b/openstack_dashboard/dashboards/project/databases/tables.py index 19a551c657..6c2036cbf3 100644 --- a/openstack_dashboard/dashboards/project/databases/tables.py +++ b/openstack_dashboard/dashboards/project/databases/tables.py @@ -49,7 +49,7 @@ class TerminateInstance(tables.BatchAction): name = "terminate" classes = ("btn-danger", ) - icon = "off" + icon = "remove" def action(self, request, obj_id): api.trove.instance_delete(request, obj_id) diff --git a/openstack_dashboard/dashboards/project/instances/tables.py b/openstack_dashboard/dashboards/project/instances/tables.py index a9bcba1bb8..dd90a7fbf8 100644 --- a/openstack_dashboard/dashboards/project/instances/tables.py +++ b/openstack_dashboard/dashboards/project/instances/tables.py @@ -81,7 +81,7 @@ def is_deleting(instance): class TerminateInstance(policy.PolicyTargetMixin, tables.BatchAction): name = "terminate" classes = ("btn-danger",) - icon = "off" + icon = "remove" policy_rules = (("compute", "compute:delete"),) @staticmethod