mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-21 06:59:09 +00:00
fix: skip nested events
This commit is contained in:
committed by
Carlos Valente
parent
e4b0df42cf
commit
f6a02abf36
@@ -182,7 +182,7 @@ export default function Operator() {
|
|||||||
const { isPast, isSelected, isLinkedToLoaded, totalGap } = process(nestedEntry);
|
const { isPast, isSelected, isLinkedToLoaded, totalGap } = process(nestedEntry);
|
||||||
|
|
||||||
// hide past events (if setting) and skipped events
|
// hide past events (if setting) and skipped events
|
||||||
if (hidePast && isPast) {
|
if ((hidePast && isPast) || nestedEntry.skip) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user