From 55af52fdff1b53cd450e4aafa9a7456478a3977b Mon Sep 17 00:00:00 2001 From: Brian Dubois Date: Thu, 4 Aug 2022 21:10:25 -0400 Subject: [PATCH] Add tooltip to run selection to hint about double click. (#5842) 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. --- .../webapp/runs/views/runs_table/runs_table_component.ng.html | 1 + 1 file changed, 1 insertion(+) diff --git a/tensorboard/webapp/runs/views/runs_table/runs_table_component.ng.html b/tensorboard/webapp/runs/views/runs_table/runs_table_component.ng.html index 936c18cf67d..b88e9a29c4e 100644 --- a/tensorboard/webapp/runs/views/runs_table/runs_table_component.ng.html +++ b/tensorboard/webapp/runs/views/runs_table/runs_table_component.ng.html @@ -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." >