We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d89b35e commit 823e9c2Copy full SHA for 823e9c2
packages/webui/src/client/ui/SegmentTimeline/SegmentTimeline.tsx
@@ -290,6 +290,9 @@ export class SegmentTimelineClass extends React.Component<Translated<WithTiming<
290
componentWillUnmount(): void {
291
super.componentWillUnmount && super.componentWillUnmount()
292
clearTimeout(this.highlightTimeout)
293
+ if (this.segmentBlock) {
294
+ this.segmentBlock.removeEventListener('wheel', this.onTimelineWheel, { capture: true })
295
+ }
296
297
RundownViewEventBus.off(RundownViewEvents.HIGHLIGHT, this.onHighlight)
298
RundownViewEventBus.off(RundownViewEvents.SEGMENT_ZOOM_ON, this.onRundownEventSegmentZoomOn)
0 commit comments