Skip to content

Commit

Permalink
Add tooltip to run selection to hint about double click. (#5842)
Browse files Browse the repository at this point in the history
We recently added the ability to double click a run checkbox to select it only and deselect the other runs.

User feedback (googlers, see b/238365158#comment9) said it was not discoverable. 

This change adds a tooltip to the checkbox, which includes a hint about double click. I use "title" instead of "matTooltip" just because we have many icon buttons that also use this and the behavior is more consistent with those buttons.
  • Loading branch information
bmd3k authored and yatbear committed Aug 5, 2022
1 parent d4338ea commit 55af52f
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -239,6 +239,7 @@
[checked]="item.selected"
(change)="onSelectionToggle.emit(item)"
(dblclick)="onSelectionDblClick.emit(item)"
title="Click to toggle run selection or double click to select only this run."
></mat-checkbox>
</span>
<tb-experiment-alias
Expand Down

0 comments on commit 55af52f

Please sign in to comment.