Skip to content

Commit

Permalink
fix: Experiment create config list
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushjain17 committed Dec 20, 2024
1 parent 61e052a commit a951629
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions crates/frontend/src/pages/experiment_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,14 @@ pub fn experiment_list() -> impl IntoView {
);
let dimensions_future =
fetch_dimensions(&pagination_filters, current_tenant.to_string());
let config_future =
fetch_default_config(&pagination_filters, current_tenant.to_string());
let config_future = fetch_default_config(
&ListFilters {
page: None,
count: None,
all: Some(true),
},
current_tenant.to_string(),
);

let (experiments_result, dimensions_result, config_result) =
join!(experiments_future, dimensions_future, config_future);
Expand Down

0 comments on commit a951629

Please sign in to comment.