Skip to content

Commit 11c9c60

Browse files
authored
Set pagination limit at 50 machines. (#1023)
1 parent 662ce38 commit 11c9c60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ui/src/app/machines/views/MachineList/MachineListTable/MachineListTable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ const MachineListTable = ({
711711
className: "u-align--right",
712712
},
713713
]}
714-
paginate={150}
714+
paginate={50}
715715
rows={
716716
grouping === "none"
717717
? generateRows({ machines, selectedMachines, ...rowProps })

ui/src/app/pools/views/Pools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ const Pools = () => {
162162
},
163163
]}
164164
expanding={true}
165-
paginate={150}
165+
paginate={50}
166166
rows={generateRows(
167167
resourcePools,
168168
expandedId,

0 commit comments

Comments
 (0)