Skip to content

Commit

Permalink
feat(Designer): Increased browse operation request page size to 5k (#…
Browse files Browse the repository at this point in the history
…4989)

Increased search request page size to 5k
  • Loading branch information
rllyy97 committed Jun 17, 2024
1 parent 325ae34 commit 04cee68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ export const OperationSearchHeader = (props: OperationSearchHeaderProps) => {
{displayRuntimeInfo || displayActionType ? (
<div style={{ display: 'grid', grid: 'auto-flow / 1fr 1fr', gridColumnGap: '8px' }}>
{displayRuntimeInfo && runtimeFilters.length > 0 ? (
<div>
<Label>{intl.formatMessage({ defaultMessage: 'Runtime', id: 'g5A6Bn', description: 'Filter by label' })} </Label>
<div style={{ display: 'inherit' }}>
<Label>{intl.formatMessage({ defaultMessage: 'Runtime', id: 'g5A6Bn', description: 'Filter by label' })}</Label>
<Dropdown
placeholder={
filters?.['runtime']
Expand All @@ -135,8 +135,8 @@ export const OperationSearchHeader = (props: OperationSearchHeaderProps) => {
</div>
) : null}
{displayActionType ? (
<div>
<Label> {intl.formatMessage({ defaultMessage: 'Action Type', id: 'TRpSCQ', description: 'Filter by label' })}</Label>
<div style={{ display: 'inherit' }}>
<Label>{intl.formatMessage({ defaultMessage: 'Action Type', id: 'TRpSCQ', description: 'Filter by label' })}</Label>
<Dropdown
placeholder={
filters?.['actionType']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export abstract class BaseSearchService implements ISearchService {
uri: string,
queryParams?: any,
pageNumber = 0,
pageSize = 2500
pageSize = 5000
): Promise<{ value: any[]; hasMore: boolean }> {
if (this._isDev) {
return { value: [], hasMore: false };
Expand Down

0 comments on commit 04cee68

Please sign in to comment.