Skip to content

Commit

Permalink
adapt to work with experiment selector
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio vincenzi committed Mar 21, 2024
1 parent c7aa445 commit 90886e0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
3 changes: 1 addition & 2 deletions src/src/services/models/explorer/createAppModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ import getFilteredRow from 'utils/app/getFilteredRow';
import { getGroupingPersistIndex } from 'utils/app/getGroupingPersistIndex';
import getGroupingSelectOptions from 'utils/app/getGroupingSelectOptions';
import getQueryStringFromSelect from 'utils/app/getQueryStringFromSelect';
import getInputQueryStringFromSelect from 'utils/app/getInputQueryStringFromSelect';
import getMetricsListFromSelect from 'utils/app/getMetricsListFromSelect';
import getRunData from 'utils/app/getRunData';
import onAggregationConfigChange from 'utils/app/onAggregationConfigChange';
Expand Down Expand Up @@ -621,7 +620,7 @@ function createAppModel(appConfig: IAppInitialConfig) {
}

let metrics = getMetricsListFromSelect(configData?.select);
let query = getInputQueryStringFromSelect(configData?.select);
let query = getQueryStringFromSelect(configData?.select, true);

let params: {
q: string;
Expand Down
17 changes: 0 additions & 17 deletions src/src/utils/app/getInputQueryStringFromSelect.ts

This file was deleted.

0 comments on commit 90886e0

Please sign in to comment.