diff options
Diffstat (limited to 'src/view/shell/desktop')
-rw-r--r-- | src/view/shell/desktop/SidebarTrendingTopics.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/view/shell/desktop/SidebarTrendingTopics.tsx b/src/view/shell/desktop/SidebarTrendingTopics.tsx index ef8227d1c..a7b9a8391 100644 --- a/src/view/shell/desktop/SidebarTrendingTopics.tsx +++ b/src/view/shell/desktop/SidebarTrendingTopics.tsx @@ -79,7 +79,12 @@ function Inner() { ) : !trending?.topics ? null : ( <> {trending.topics.slice(0, TRENDING_LIMIT).map(topic => ( - <TrendingTopicLink key={topic.link} topic={topic}> + <TrendingTopicLink + key={topic.link} + topic={topic} + onPress={() => { + logEvent('trendingTopic:click', {context: 'sidebar'}) + }}> {({hovered}) => ( <TrendingTopic size="small" |