Skip to content

Commit

Permalink
fix: revert experiment list pagination bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Datron committed Jan 20, 2025
1 parent cf24abd commit b1834c5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/frontend/src/pages/experiment_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,20 @@ pub fn experiment_list() -> impl IntoView {
},
|(current_tenant, filters, pagination_filters, org_id)| async move {
// Perform all fetch operations concurrently
let fetch_all_filters = PaginationParams::all_entries();
let experiments_future = fetch_experiments(
&filters,
&pagination_filters,
current_tenant.to_string(),
org_id.clone(),
);
let dimensions_future = fetch_dimensions(
&pagination_filters,
&fetch_all_filters,
current_tenant.to_string(),
org_id.clone(),
);
let config_future = fetch_default_config(
&pagination_filters,
&fetch_all_filters,
current_tenant.to_string(),
org_id.clone(),
);
Expand Down

0 comments on commit b1834c5

Please sign in to comment.