Columns typo fixed

A typo prevented the proper behavior for colums ordering
in the admin-routers table.

Change-Id: I467d7b00af95a000e16a44667c3716df1ebd527a
Closes-Bug: #1605772
This commit is contained in:
Yakup Adakli
2016-11-30 11:23:14 +03:00
committed by David Lyle
parent 2394397bfd
commit 2e659a6f1c

View File

@@ -54,4 +54,5 @@ class RoutersTable(r_tables.RoutersTable):
row_class = UpdateRow
table_actions = (DeleteRouter, AdminRoutersFilterAction)
row_actions = (EditRouter, DeleteRouter,)
Columns = ('tenant', 'name', 'status', 'distributed', 'ext_net')
columns = ('tenant', 'name', 'status', 'distributed', 'ext_net',
'ha', 'admin_state',)