From 4c916678ad43c3550b3b29dabe8a26a1d51a582c Mon Sep 17 00:00:00 2001 From: kurilova Date: Fri, 20 Sep 2024 08:38:52 +0000 Subject: [PATCH] Remove tooltip from link --- .../download-zip-modal/download-zip-modal.component.html | 2 -- .../download-zip-modal/download-zip-modal.component.ts | 3 --- 2 files changed, 5 deletions(-) diff --git a/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.html b/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.html index af94c4c74..a82b32eae 100644 --- a/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.html +++ b/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.html @@ -48,7 +48,6 @@ role="link" class="redirect-link" aria-label="Go to Risk Assessment tab" - matTooltip="Go to Risk Assessment tab" (keydown.enter)="cancel(null)" (keydown.space)="cancel(null)" (click)="cancel(null)" @@ -65,7 +64,6 @@ role="link" class="redirect-link" aria-label="Go to Risk Assessment tab" - matTooltip="Go to Risk Assessment tab" (keydown.enter)="cancel(null)" (keydown.space)="cancel(null)" (click)="cancel(null)" diff --git a/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.ts b/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.ts index e12c9690e..a703edb6d 100644 --- a/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.ts +++ b/modules/ui/src/app/components/download-zip-modal/download-zip-modal.component.ts @@ -19,7 +19,6 @@ import { MatOptionModule } from '@angular/material/core'; import { TestRunService } from '../../services/test-run.service'; import { Routes } from '../../model/routes'; import { RouterLink } from '@angular/router'; -import { MatTooltip, MatTooltipModule } from '@angular/material/tooltip'; import { TestrunStatus, StatusOfTestrun } from '../../model/testrun-status'; import { DownloadReportComponent } from '../download-report/download-report.component'; @@ -43,8 +42,6 @@ interface DialogData { MatSelectModule, MatOptionModule, RouterLink, - MatTooltip, - MatTooltipModule, DownloadReportComponent, ], templateUrl: './download-zip-modal.component.html',