Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions static/app/views/explore/metrics/metricPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ import {ChartType} from 'sentry/views/insights/common/components/chart';
const RESULT_LIMIT = 50;
const TWO_MINUTE_DELAY = 120;

const CHART_TYPE_TO_ICON: Record<ChartType, 'line' | 'area' | 'bar' | 'scatter'> = {
const CHART_TYPE_TO_ICON: Record<ChartType, 'line' | 'area' | 'bar' | 'heatmap'> = {
[ChartType.LINE]: 'line',
[ChartType.AREA]: 'area',
[ChartType.BAR]: 'bar',
[ChartType.HEATMAP]: 'scatter',
[ChartType.HEATMAP]: 'heatmap',
};

interface MetricPanelProps extends React.HTMLAttributes<HTMLDivElement> {
Expand Down
Loading