Skip to content

Commit 675952e

Browse files
committed
fix(timeline): can't drag view to the bottom
1 parent 48157f6 commit 675952e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app-frontend/src/features/timeline/TimelineView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,7 @@ export default defineComponent({
13161316
endTime.value = start + size
13171317
13181318
// Vertical
1319-
layersScroller.scrollTop = Math.min(totalLayersHeight.value, startDragScrollTop + deltaY)
1319+
layersScroller.scrollTop = startDragScrollTop + deltaY
13201320
}
13211321
}
13221322

0 commit comments

Comments
 (0)