Skip to content

Commit

Permalink
fix: click count better than activity count (#19022)
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra authored Dec 1, 2023
1 parent f470984 commit 27e680a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,11 @@ function ActivityIndicators({
<PropertyIcons recordingProperties={iconProperties} loading={loading} {...props} />

<span
title={`Mouse activity: ${recording.mouse_activity_count}`}
title={`Mouse clicks: ${recording.click_count}`}
className="flex items-center gap-1 overflow-hidden shrink-0"
>
<IconAutocapture />
{recording.mouse_activity_count}
{recording.click_count}
</span>

<span
Expand Down

0 comments on commit 27e680a

Please sign in to comment.