AnnotationsPlugin2: Skip exemplar frames (#80760)

pull/80306/head
Leon Sorokin 1 year ago committed by GitHub
parent a4b2b86194
commit 2aa533c6c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      public/app/plugins/panel/timeseries/plugins/AnnotationsPlugin2.tsx

@ -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…
Cancel
Save