We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9f4f44 commit adc526cCopy full SHA for adc526c
2 files changed
webapp/src/ts/components/report-image/report-image.component.html
@@ -2,5 +2,6 @@
2
<div class="loader"></div>
3
}
4
@if (!loading) {
5
- <img class="report-image" [src]="objectUrl" />
+ <img class="report-image" [src]="objectUrl" alt="" />
6
7
+
webapp/src/ts/components/snackbar/snackbar.component.html
@@ -3,9 +3,10 @@
<span class="snackbar-message">{{message}}</span>
@if (action) {
- <span class="snackbar-action" (click)="action.onClick()">
- {{action.label}}
8
- </span>
+ <span class="snackbar-action"
+ (click)="action.onClick()"
+ (keydown.enter)="action.onClick()"
9
+ tabindex="0">{{action.label}}</span>
10
11
12
</span>
0 commit comments