From 5cb8f773183a46b7be6f0af14110a499432abba7 Mon Sep 17 00:00:00 2001 From: crupest Date: Sat, 9 Jan 2021 23:44:45 +0800 Subject: ... --- FrontEnd/src/app/views/timeline/TimelineInfoCard.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'FrontEnd/src/app/views/timeline') diff --git a/FrontEnd/src/app/views/timeline/TimelineInfoCard.tsx b/FrontEnd/src/app/views/timeline/TimelineInfoCard.tsx index f4dbb67d..920f504d 100644 --- a/FrontEnd/src/app/views/timeline/TimelineInfoCard.tsx +++ b/FrontEnd/src/app/views/timeline/TimelineInfoCard.tsx @@ -13,8 +13,8 @@ export type OrdinaryTimelineManageItem = "delete"; export type TimelineInfoCardProps = TimelineCardComponentProps; const TimelineInfoCard: React.FC = (props) => { - const { onMember, onManage, ...otherProps } = props; - const { timeline } = props; + const { timeline, operations } = props; + const { onManage, onMember } = operations; const avatar = useAvatar(timeline?.owner?.username); @@ -66,7 +66,7 @@ const TimelineInfoCard: React.FC = (props) => { }; } })()} - {...otherProps} + {...props} /> ); }; -- cgit v1.2.3