Skip to content

Commit e02330f

Browse files
committed
Timeline - fix point centering bug
1 parent eabf21f commit e02330f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/timeline/Dash.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const Dash = (props: DashProps) => {
3838
width: vertical ? dashThickness : dashLength,
3939
height: vertical ? dashLength : dashThickness
4040
};
41-
return [style, directionStyle, sizeStyle];
41+
return [directionStyle, sizeStyle, style];
4242
}, [style, vertical, dashThickness, dashLength]);
4343

4444
const renderDash = () => {

0 commit comments

Comments
 (0)