From 71082e9d94ac70a04a3fea0a6779fc4184ec60ce Mon Sep 17 00:00:00 2001 From: kurilova Date: Tue, 3 Mar 2026 10:40:36 +0000 Subject: [PATCH] Adds tooltip to clear search button --- make/DEBIAN/control | 2 +- .../src/app/components/list-layout/list-layout.component.html | 1 + .../ui/src/app/components/list-layout/list-layout.component.ts | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/make/DEBIAN/control b/make/DEBIAN/control index e6dabdc8d..b512be623 100644 --- a/make/DEBIAN/control +++ b/make/DEBIAN/control @@ -1,5 +1,5 @@ Package: Testrun -Version: 2.3.2 +Version: 2.3.1-beta.9 Architecture: amd64 Maintainer: Google Homepage: https://github.com/google/testrun diff --git a/modules/ui/src/app/components/list-layout/list-layout.component.html b/modules/ui/src/app/components/list-layout/list-layout.component.html index cbf234637..f8ef856f7 100644 --- a/modules/ui/src/app/components/list-layout/list-layout.component.html +++ b/modules/ui/src/app/components/list-layout/list-layout.component.html @@ -47,6 +47,7 @@ (click)="clearSearch()" class="clear-search-button" mat-icon-button + matTooltip="Clear search" aria-label="Clear search"> close diff --git a/modules/ui/src/app/components/list-layout/list-layout.component.ts b/modules/ui/src/app/components/list-layout/list-layout.component.ts index b8647a4f7..304cd3754 100644 --- a/modules/ui/src/app/components/list-layout/list-layout.component.ts +++ b/modules/ui/src/app/components/list-layout/list-layout.component.ts @@ -33,6 +33,7 @@ import { EntityAction, EntityActionResult } from '../../model/entity-action'; import { Device } from '../../model/device'; import { LayoutType } from '../../model/layout-type'; import { Profile } from '../../model/profile'; +import { MatTooltipModule } from '@angular/material/tooltip'; @Component({ selector: 'app-list-layout', @@ -43,6 +44,7 @@ import { Profile } from '../../model/profile'; MatToolbarModule, MatIconModule, ListItemComponent, + MatTooltipModule, ], providers: [DatePipe], templateUrl: './list-layout.component.html',