mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
AnnotationsPlugin2: Skip exemplar frames (#80760)
This commit is contained in:
parent
a4b2b86194
commit
2aa533c6c5
@ -69,7 +69,7 @@ export const AnnotationsPlugin2 = ({
|
||||
const getColorByName = useTheme2().visualization.getColorByName;
|
||||
|
||||
const annos = useMemo(() => {
|
||||
let annos = annotations.slice();
|
||||
let annos = annotations.filter((frame) => frame.name !== 'exemplar');
|
||||
|
||||
if (newRange) {
|
||||
let isRegion = newRange.to > newRange.from;
|
||||
|
Loading…
Reference in New Issue
Block a user