Fix opview with groups (#1814)

* create failing test

* fix: op evet used past state of the group
This commit is contained in:
Alex Christoffer Rasmussen
2025-10-08 21:19:57 +02:00
committed by GitHub
parent 12bc323e57
commit 147862e647
2 changed files with 12 additions and 6 deletions
@@ -177,7 +177,7 @@ export default function Operator() {
return null;
}
const { isPast, isLoaded, isLinkedToLoaded, totalGap } = rundownMetadata[entryId];
const { isPast, isLoaded, isLinkedToLoaded, totalGap } = rundownMetadata[nestedEntryId];
// hide past events (if setting) and skipped events
if ((hidePast && isPast) || nestedEntry.skip) {