mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
fix search loading animation (#15063)
This commit is contained in:
@@ -259,7 +259,7 @@ export class NotebookSearchView extends SearchView {
|
|||||||
const onComplete = async (completed?: ISearchComplete) => {
|
const onComplete = async (completed?: ISearchComplete) => {
|
||||||
let end = new Date().getTime();
|
let end = new Date().getTime();
|
||||||
this._telemetryService.createActionEvent(TelemetryKeys.TelemetryView.Notebook, TelemetryKeys.TelemetryAction.SearchCompleted)
|
this._telemetryService.createActionEvent(TelemetryKeys.TelemetryView.Notebook, TelemetryKeys.TelemetryAction.SearchCompleted)
|
||||||
.withAdditionalProperties({ resultsReturned: completed.results.length })
|
.withAdditionalProperties({ resultsReturned: completed?.results.length })
|
||||||
.withAdditionalMeasurements({ timeTakenMs: end - start })
|
.withAdditionalMeasurements({ timeTakenMs: end - start })
|
||||||
.send();
|
.send();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user