diff --git a/public/app/features/inspector/InspectStatsTab.tsx b/public/app/features/inspector/InspectStatsTab.tsx index 541a3bd0da5..3abd38fe502 100644 --- a/public/app/features/inspector/InspectStatsTab.tsx +++ b/public/app/features/inspector/InspectStatsTab.tsx @@ -1,3 +1,4 @@ +import { css } from '@emotion/css'; import React from 'react'; import { PanelData, QueryResultMetaStat, TimeZone } from '@grafana/data'; @@ -15,7 +16,6 @@ export const InspectStatsTab = ({ data, timeZone }: InspectStatsTabProps) => { if (!data.request) { return null; } - let stats: QueryResultMetaStat[] = []; const requestTime = data.request.endTime ? data.request.endTime - data.request.startTime : -1; @@ -61,9 +61,14 @@ export const InspectStatsTab = ({ data, timeZone }: InspectStatsTabProps) => { const dataStatsTableName = t('dashboard.inspect-stats.data-title', 'Data source stats'); return ( -