You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(discover): Show banner for split decision (#73740)
1. Show banner for split decision
2. Use saved query dataset to decide which actual dataset to query
3. Switching datasets preserves old state and only switches dataset
instead of resetting the whole query when already in a saved query -
it's a better experience if we guess the wrong dataset, the state
remains intact as the switch between datasets
4. Removes references to queryDataset in EventView to keep event dataset
selector agnostic
@@ -258,7 +258,6 @@ export type EventViewOptions = {
258
258
dataset?: DiscoverDatasets;
259
259
expired?: boolean;
260
260
interval?: string;
261
-
queryDataset?: SavedQueryDatasets;
262
261
utc?: string|boolean|undefined;
263
262
yAxis?: string|string[]|undefined;
264
263
};
@@ -284,7 +283,6 @@ class EventView {
284
283
createdBy: User|undefined;
285
284
additionalConditions: MutableSearch;// This allows views to always add additional conditions to the query to get specific data. It should not show up in the UI unless explicitly called.
0 commit comments