mirror of
https://github.com/grafana/grafana.git
synced 2026-08-26 21:37:31 -05:00
AnnotationsPlugin2: Skip exemplar frames (#80760)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user