Skip to content

Commit

Permalink
fix: cannot set visible of null
Browse files Browse the repository at this point in the history
  • Loading branch information
Akryum committed Jan 31, 2023
1 parent 6ad6ecf commit 1b1d1d0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/app-frontend/src/features/timeline/TimelineView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,8 @@ export default defineComponent({
function runEventPositionUpdate () {
let event: TimelineEvent
while ((event = updateEventPositionQueue.shift())) {
if (!event.container) continue
// Ignored
const ignored = isEventIgnored(event)
event.container.visible = !ignored
Expand Down

0 comments on commit 1b1d1d0

Please sign in to comment.