mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #4213 from bradbeattie/patch-1
Increasing limit of returned results from searches
This commit is contained in:
commit
c8bed0564d
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ const SearchResults: FunctionComponent<SearchResultsProps> = ({ serverId = windo
|
||||||
const getDefaultParameters = useCallback(() => ({
|
const getDefaultParameters = useCallback(() => ({
|
||||||
ParentId: parentId,
|
ParentId: parentId,
|
||||||
searchTerm: query,
|
searchTerm: query,
|
||||||
Limit: 24,
|
Limit: 100,
|
||||||
Fields: 'PrimaryImageAspectRatio,CanDelete,BasicSyncInfo,MediaSourceCount',
|
Fields: 'PrimaryImageAspectRatio,CanDelete,BasicSyncInfo,MediaSourceCount',
|
||||||
Recursive: true,
|
Recursive: true,
|
||||||
EnableTotalRecordCount: false,
|
EnableTotalRecordCount: false,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue