From accf0f7ac5d4d6b3445977483d0ea1abcd8a6b72 Mon Sep 17 00:00:00 2001 From: Omer Lachish Date: Mon, 28 Oct 2019 09:51:57 +0200 Subject: [PATCH] show more workers per page. also allow page size selection (#4300) --- client/app/components/admin/RQStatus.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/app/components/admin/RQStatus.jsx b/client/app/components/admin/RQStatus.jsx index 4e6636dc74..147ac5330b 100644 --- a/client/app/components/admin/RQStatus.jsx +++ b/client/app/components/admin/RQStatus.jsx @@ -47,6 +47,11 @@ export function WorkersTable({ loading, items }) { columns={workersColumns} rowKey="name" dataSource={items} + pagination={{ + defaultPageSize: 25, + pageSizeOptions: [10, 25, 50], + showSizeChanger: true, + }} /> ); }