From d6c06f0b22dfe727c76cf6525c965a0ca4cccfc0 Mon Sep 17 00:00:00 2001 From: Masco Kaliyamoorthy Date: Thu, 22 Jan 2015 15:44:01 +0530 Subject: [PATCH] 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 --- openstack_dashboard/dashboards/admin/instances/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/admin/instances/tables.py b/openstack_dashboard/dashboards/admin/instances/tables.py index 780eb437d1..597d3c1635 100644 --- a/openstack_dashboard/dashboards/admin/instances/tables.py +++ b/openstack_dashboard/dashboards/admin/instances/tables.py @@ -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),