aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-12-31 21:38:22 +0800
committercrupest <crupest@outlook.com>2020-12-31 21:38:22 +0800
commit681ed22edbe6ead81f7177c956322c8645f77398 (patch)
treef1b0e12838808396feae84a4d68e23ee4c4cbb81 /FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx
parent6016377a737ccbc64f02403ba6d9a22821b28508 (diff)
downloadtimeline-681ed22edbe6ead81f7177c956322c8645f77398.tar.gz
timeline-681ed22edbe6ead81f7177c956322c8645f77398.tar.bz2
timeline-681ed22edbe6ead81f7177c956322c8645f77398.zip
...
Diffstat (limited to 'FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx')
-rw-r--r--FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx b/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx
index b7cd4a45..20ec6e43 100644
--- a/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx
+++ b/FrontEnd/src/app/views/timeline-common/TimelinePageTemplateUI.tsx
@@ -31,6 +31,7 @@ export interface TimelinePageTemplateUIProps<TManageItems> {
onManage?: (item: TManageItems | "property") => void;
onMember: () => void;
onBookmark?: () => void;
+ onHighlight?: () => void;
onPost?: TimelinePostSendCallback;
}
| I18nText;
@@ -157,6 +158,7 @@ export default function TimelinePageTemplateUI<TManageItems>(
onManage={data.onManage}
onMember={data.onMember}
onBookmark={data.onBookmark}
+ onHighlight={data.onHighlight}
syncStatus={syncStatus}
collapse={cardCollapse}
toggleCollapse={toggleCardCollapse}