From 4458f5aaec266b1c3228abd661a127204f1651da Mon Sep 17 00:00:00 2001 From: Revon Mathews Date: Thu, 8 Dec 2016 12:08:37 -0600 Subject: [PATCH] Fixes inconsistency in Stacks filter label Fixed inconsisteny in filter label to include '=' after the text as seen in all the other cases. Change-Id: I2c0905dbfef96a062028f5e0200c9e2c6100c9c8 Closes-Bug: #1648565 --- openstack_dashboard/dashboards/project/stacks/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack_dashboard/dashboards/project/stacks/tables.py b/openstack_dashboard/dashboards/project/stacks/tables.py index ef65937083..af85bfa36b 100644 --- a/openstack_dashboard/dashboards/project/stacks/tables.py +++ b/openstack_dashboard/dashboards/project/stacks/tables.py @@ -187,7 +187,7 @@ class StacksUpdateRow(tables.Row): class StacksFilterAction(tables.FilterAction): filter_type = 'server' - filter_choices = (('name', _('Stack Name'), True, _('Case-sensitive')), + filter_choices = (('name', _('Stack Name ='), True, _('Case-sensitive')), ('id', _('Stack ID ='), True), ('status', _('Status ='), True))