diff options
author | crupest <crupest@outlook.com> | 2021-04-03 21:55:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-03 21:55:46 +0800 |
commit | 4899fac577f92d3c3feade4869621ef6979460c1 (patch) | |
tree | fd1695c024bfe8ad15cb234a19c14bb89013153f /FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx | |
parent | a3fa22b5eb12a5ba9acb8ab87edead4b79ad9dfc (diff) | |
download | timeline-4899fac577f92d3c3feade4869621ef6979460c1.tar.gz timeline-4899fac577f92d3c3feade4869621ef6979460c1.tar.bz2 timeline-4899fac577f92d3c3feade4869621ef6979460c1.zip |
feat: Paged timeline posts.
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx')
-rw-r--r-- | FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx b/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx index d01ecfa8..3d075f0e 100644 --- a/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx +++ b/FrontEnd/src/app/views/timeline-common/TimelinePostView.tsx @@ -31,6 +31,7 @@ const TimelinePostView: React.FC<TimelinePostViewProps> = (props) => { return ( <div + id={`timeline-post-${post.id}`} className={clsx("timeline-item", current && "current", className)} style={style} > |