We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebfde33 commit 7b302a4Copy full SHA for 7b302a4
static/app/views/dashboards/widgetCard/spansWidgetQueries.tsx
@@ -187,10 +187,11 @@ function SpansWidgetQueriesProgressiveLoadingImpl({
187
dashboardFilters={dashboardFilters}
188
afterFetchSeriesData={afterFetchSeriesData}
189
samplingMode={SAMPLING_MODE.BEST_EFFORT}
190
- onDataFetched={() => {
+ onDataFetched={results => {
191
// Reset the query phase to preflight so that the next time this component
192
// renders, it will start with only the preflight query
193
setQueryPhase(SAMPLING_MODE.PREFLIGHT);
194
+ onDataFetched?.(results);
195
}}
196
>
197
{bestEffortProps => {
0 commit comments