Update Monthly patch updates (#64323)

* Update Monthly patch updates

* don't update dangerously-set-html-content

* run prettier

* fix types

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
renovate[bot]
2023-03-08 09:38:06 +00:00
committed by GitHub
parent a317e48de8
commit 523f675dd8
18 changed files with 806 additions and 699 deletions

View File

@@ -6,7 +6,7 @@ import { SeriesColorPicker, SeriesIcon } from '@grafana/ui';
import { TimeSeries } from 'app/core/core';
export const LEGEND_STATS = ['min', 'max', 'avg', 'current', 'total'] as const;
export type LegendStat = typeof LEGEND_STATS[number];
export type LegendStat = (typeof LEGEND_STATS)[number];
export interface LegendLabelProps {
series: TimeSeries;