Skip to content
Snippets Groups Projects
Commit 33ee91b8 authored by Giildo's avatar Giildo
Browse files

:bug: Fix the event position bug

parent 65c9118e
Branches feature/simplification
Tags
No related merge requests found
......@@ -131,7 +131,7 @@ export class TimelineEventObject extends AbstractTimeline {
if (itemIndex > 1 && isStart) footerPositions.value = footerPositions.value.slice(itemIndex - 2)
return (itemBefore.x + timelinePartSize.value / 2) + (timeBetweenItemAndEvent * 100 / timeBetweenItems)
return (itemBefore.x + timelinePartSize.value / 2) + (timeBetweenItemAndEvent * timelinePartSize.value / timeBetweenItems)
}
private toggleSelectionStatus() {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment