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
This commit is contained in:
Revon Mathews 2016-12-08 12:08:37 -06:00
parent 5974b0bab8
commit 4458f5aaec
1 changed files with 1 additions and 1 deletions

View File

@ -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))