chore(rundown): improve documentation of insert logic

This commit is contained in:
Carlos Valente
2026-07-19 11:59:27 +02:00
committed by Carlos Valente
parent 5f040092cb
commit 8363f06a5c
2 changed files with 3 additions and 2 deletions
@@ -96,7 +96,7 @@ export function useRundownCommands({
addEntry(patch, {
after: id && !above ? id : undefined,
before: id && above ? id : undefined,
lastEventId: !above && id ? id : undefined,
lastEventId: id && !above ? id : undefined,
});
},
[addEntry],