Merge "Fix Volume Snapshot tab pagination"

This commit is contained in:
Jenkins
2017-06-13 10:48:57 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ from openstack_dashboard.dashboards.project.snapshots \
import views
class SnapshotsView(tables.DataTableView, tables.PagedTableMixin):
class SnapshotsView(tables.PagedTableMixin, tables.DataTableView):
table_class = vol_snapshot_tables.VolumeSnapshotsTable
page_title = _("Volume Snapshots")

View File

@@ -30,7 +30,7 @@ from openstack_dashboard.dashboards.project.snapshots \
import tabs as vol_snapshot_tabs
class SnapshotsView(tables.DataTableView, tables.PagedTableMixin):
class SnapshotsView(tables.PagedTableMixin, tables.DataTableView):
table_class = vol_snapshot_tables.VolumeSnapshotsTable
page_title = _("Volume Snapshots")