diff options
-rw-r--r-- | FrontEnd/src/views/timeline-common/Timeline.tsx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/FrontEnd/src/views/timeline-common/Timeline.tsx b/FrontEnd/src/views/timeline-common/Timeline.tsx index 90eba18f..c632badc 100644 --- a/FrontEnd/src/views/timeline-common/Timeline.tsx +++ b/FrontEnd/src/views/timeline-common/Timeline.tsx @@ -149,8 +149,16 @@ const Timeline: React.FC<TimelineProps> = (props) => { posts={posts} onReload={onReload.current} /> - {timeline?.postable && ( + {timeline?.postable ? ( <TimelinePostEdit timeline={timeline} onPosted={onReload.current} /> + ) : ( + <TimelineTop + lineProps={{ + startSegmentLength: 20, + center: "none", + current: true, + }} + /> )} </> ); |