Skip to content

Commit

Permalink
Increase pageSize for search result view (#3565)
Browse files Browse the repository at this point in the history
  • Loading branch information
petergrau committed Dec 4, 2020
1 parent 4266967 commit 6a0d7a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/purple-ghosts-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@backstage/plugin-search': patch
---

change default size for pageSize in search result view
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ export const SearchResult = ({ searchQuery }: SearchResultProps) => {
)}
<Grid item xs={showFilters ? 9 : 12}>
<Table
options={{ paging: true, search: false }}
options={{ paging: true, pageSize: 20, search: false }}
data={filteredResults}
columns={columns}
title={
Expand Down

0 comments on commit 6a0d7a9

Please sign in to comment.