fix: skip nested events

This commit is contained in:
Carlos Valente
2025-09-10 16:15:08 +02:00
committed by Carlos Valente
parent 4499495212
commit 1847822f31
@@ -182,7 +182,7 @@ export default function Operator() {
const { isPast, isSelected, isLinkedToLoaded, totalGap } = process(nestedEntry);
// hide past events (if setting) and skipped events
if (hidePast && isPast) {
if ((hidePast && isPast) || nestedEntry.skip) {
return null;
}