Not display loading image for shelved instances
If, any of the instances are shelved through CLI those instances status are displayed as shelved offloaded with a loading image. Displaying the loading image for this status are not correct. Displaying the loading image is removed for the shelved offloaded status. This problem is reported and fixed in #1318558 but this fix is working only for rescue not for shelved offloaded. Now it is fixed for shelved offloaded also. Change-Id: I39d1e2fc1428923824b303f0837b25d736dc0e3c Closes-Bug: #1352140 Co-Authored-By: Mizielski Robert <robert.mizielski@cloudwatt.com>
This commit is contained in:
parent
b12c534d5c
commit
531ffe462d
@ -119,7 +119,7 @@ class AdminInstancesTable(tables.DataTable):
|
||||
("paused", True),
|
||||
("error", False),
|
||||
("rescue", True),
|
||||
("shelved offloaded", True),
|
||||
("shelved_offloaded", True),
|
||||
)
|
||||
tenant = tables.Column("tenant_name", verbose_name=_("Project"))
|
||||
# NOTE(gabriel): Commenting out the user column because all we have
|
||||
|
@ -800,7 +800,7 @@ class InstancesTable(tables.DataTable):
|
||||
("paused", True),
|
||||
("error", False),
|
||||
("rescue", True),
|
||||
("shelved offloaded", True),
|
||||
("shelved_offloaded", True),
|
||||
)
|
||||
name = tables.Column("name",
|
||||
link=("horizon:project:instances:detail"),
|
||||
|
Loading…
Reference in New Issue
Block a user