chore: fix
CodeQL checks / Detect whether code changed (push) Waiting to run Details
CodeQL checks / Analyze (actions) (push) Blocked by required conditions Details
CodeQL checks / Analyze (go) (push) Blocked by required conditions Details
CodeQL checks / Analyze (javascript) (push) Blocked by required conditions Details

This commit is contained in:
Galen 2025-10-07 15:56:51 -05:00
parent 77a649d4ed
commit e875bacb82
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ export function getAnnotationFrames(dataFrames: DataFrame[] = []) {
return dataFrames.filter(
(frame) =>
frame.name !== 'exemplar' &&
frame.meta?.dataTopic === DataTopic.Annotations &&
frame.length > 0 &&
frame.fields.some((f) => f.name === 'time' && frame.meta?.dataTopic === DataTopic.Annotations)
frame.fields.some((f) => f.name === 'time')
);
}