Skip to content

Commit

Permalink
enable pagination when expanding experiment in both the home page and…
Browse files Browse the repository at this point in the history
… the archive page (#4008)
  • Loading branch information
jingzhang36 committed Jun 17, 2020
1 parent 4d2e317 commit 53d0244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/ExperimentList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export class ExperimentList extends React.PureComponent<ExperimentListProps, Exp
experimentIdMask={experiment.id}
onError={() => null}
{...this.props}
disablePaging={true}
disablePaging={false}
noFilterBox={true}
storageState={
this.props.storageState === ExperimentStorageState.ARCHIVED
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ExperimentList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export class ExperimentList extends Page<{ namespace?: string }, ExperimentListS
experimentIdMask={experiment.id}
onError={() => null}
{...this.props}
disablePaging={true}
disablePaging={false}
selectedIds={this.state.selectedIds}
noFilterBox={true}
storageState={RunStorageState.AVAILABLE}
Expand Down

0 comments on commit 53d0244

Please sign in to comment.