Skip to content

Commit

Permalink
fix: reduce number of workflows displayed in UI by default. Fixes #8297
Browse files Browse the repository at this point in the history
… (#8303)

Signed-off-by: Dillen Padhiar <dpadhiar99@gmail.com>
  • Loading branch information
dpadhiar authored Apr 1, 2022
1 parent 13bc013 commit 9ab0e95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export class WorkflowsList extends BasePage<RouteComponentProps<any>, State> {
this.state = {
pagination: {
offset: this.queryParam('offset'),
limit: parseLimit(this.queryParam('limit')) || savedOptions.paginationLimit || 500
limit: parseLimit(this.queryParam('limit')) || savedOptions.paginationLimit || 50
},
namespace: Utils.getNamespace(this.props.match.params.namespace) || '',
selectedPhases: phaseQueryParam.length > 0 ? (phaseQueryParam as WorkflowPhase[]) : savedOptions.selectedPhases,
Expand Down

0 comments on commit 9ab0e95

Please sign in to comment.