Skip to content

Commit

Permalink
Add title for presence event filter button
Browse files Browse the repository at this point in the history
This commit adds presence event filter button which helps users understand the role of the button.
  • Loading branch information
gwbaik9717 committed Jul 25, 2024
1 parent d86a181 commit 302225b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tools/devtools/src/devtools/tabs/History.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,14 @@ export function History({
>
</button>
<button onClick={toggleHidePresenceEvent}>
<button
onClick={toggleHidePresenceEvent}
title={
hidePresenceEvents
? 'Show only root changes'
: 'Show all changes'
}
>
{hidePresenceEvents ? '¥' : 'Y'}
</button>
</span>
Expand Down

0 comments on commit 302225b

Please sign in to comment.