Skip to content

Commit bd1881f

Browse files
committed
Add accessible button names for ORCID queue action buttons
1 parent b93e0bf commit bd1881f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/app/item-page/orcid-page/orcid-queue/orcid-queue.component.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ <h2>{{ 'person.orcid.registry.queue' | translate }}</h2>
3434
<div class="btn-group edit-field">
3535
<button [ngbTooltip]="getOperationTooltip(entry) | translate" container="body"
3636
class="btn btn-outline-primary my-1 col-md" (click)="send(entry)">
37-
<i [ngClass]="getOperationClass(entry)"></i>
37+
<span [ngClass]="getOperationClass(entry)"></span>
38+
<span class="sr-only">{{ getOperationTooltip(entry) | translate }}</span>
3839
</button>
3940
<button [ngbTooltip]="'person.page.orcid.sync-queue.discard' | translate" container="body"
4041
class="btn btn-outline-danger my-1 col-md" (click)="discardEntry(entry)">
41-
<i class="fas fa-unlink"></i>
42+
<span class="fas fa-unlink"></span>
43+
<span class="sr-only">{{ 'person.page.orcid.sync-queue.discard' | translate }}</span>
4244
</button>
4345
</div>
4446
</td>

0 commit comments

Comments
 (0)