diff --git a/horizon/tables/base.py b/horizon/tables/base.py index 892e3259f6..234d709224 100644 --- a/horizon/tables/base.py +++ b/horizon/tables/base.py @@ -1075,7 +1075,7 @@ class DataTableMetaclass(type): # Iterate in reverse to preserve final order for base in reversed(bases): if hasattr(base, 'base_columns'): - columns = base.base_columns.items() + columns + columns[0:0] = base.base_columns.items() dt_attrs['base_columns'] = collections.OrderedDict(columns) # If the table is in a ResourceBrowser, the column number must meet