equal(=) added in project filter option
In admin's instance table, the filter with 'project' option filtering by exact matching not by partial match. the equal(=) symbol is missing at the end of the option. there should be the = symbol to tell the user it is doing exact match like other options. in this patch the = symbol is added at the end of the project option. Change-Id: I2f81e4168d33d2dd34963039db85456a17cdbaf3 Closes-Bug: #1413534
This commit is contained in:
@@ -90,7 +90,7 @@ class AdminInstanceFilterAction(tables.FilterAction):
|
||||
# session property used for persisting the filter.
|
||||
name = "filter_admin_instances"
|
||||
filter_type = "server"
|
||||
filter_choices = (('project', _("Project"), True),
|
||||
filter_choices = (('project', _("Project ="), True),
|
||||
('host', _("Host ="), True),
|
||||
('name', _("Name"), True),
|
||||
('ip', _("IPv4 Address ="), True),
|
||||
|
Reference in New Issue
Block a user