Fix missing icon of Terminate instance
The icon of `Terminate instance` is `fa-off` had replaced by `fa-power-off` in current xstatic-font-awesome package which version is 4.2.0. the other deletion icon is `fa-remove`, the patch use it as the `Terminate instance` icon. Closes-Bug: 1425820 Change-Id: I6ad66c97626527aa5ffc1b1a09353685391f9b61
This commit is contained in:
parent
094cb67846
commit
b6b558d4ac
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user