diff options
author | crupest <crupest@outlook.com> | 2020-06-10 15:21:32 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-10 15:21:32 +0800 |
commit | 7ec5cf66cef88bc7d3b8720070f40cceb452aec4 (patch) | |
tree | 00d2663e9e0b1f528a023cc7e16a689a80beb8ca /Timeline/ClientApp/src/home/TimelineBoard.tsx | |
parent | 788ffcb06fcf021312f70c3e296011bb06fe1e84 (diff) | |
download | timeline-7ec5cf66cef88bc7d3b8720070f40cceb452aec4.tar.gz timeline-7ec5cf66cef88bc7d3b8720070f40cceb452aec4.tar.bz2 timeline-7ec5cf66cef88bc7d3b8720070f40cceb452aec4.zip |
feat(front): Fix #75 .
Diffstat (limited to 'Timeline/ClientApp/src/home/TimelineBoard.tsx')
-rw-r--r-- | Timeline/ClientApp/src/home/TimelineBoard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/ClientApp/src/home/TimelineBoard.tsx b/Timeline/ClientApp/src/home/TimelineBoard.tsx index 38a5fcf8..2e017bf7 100644 --- a/Timeline/ClientApp/src/home/TimelineBoard.tsx +++ b/Timeline/ClientApp/src/home/TimelineBoard.tsx @@ -35,7 +35,7 @@ const TimelineBoard: React.FC<TimelineBoardProps> = props => { ? `/users/${timeline.owner.username}`
: `/timelines/${name}`;
return (
- <div key={name} className="timeline-item">
+ <div key={name} className="timeline-board-item">
{isPersonal ? (
<UserTimelineLogo className="icon" />
) : (
|