From 5459364b192fcd2683f188d16675629546517e3a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 19 Sep 2024 15:35:02 +0200 Subject: [PATCH] Fix share and download input URL accessibility --- .../shared/shared-forms/input-text.component.html | 1 + .../app/shared/shared-forms/input-text.component.ts | 1 + .../shared-share-modal/video-share.component.html | 12 ++++++++++-- .../download/subtitle-files-download.component.html | 5 ++++- .../download/video-files-download.component.html | 6 +++++- 5 files changed, 21 insertions(+), 4 deletions(-) diff --git a/client/src/app/shared/shared-forms/input-text.component.html b/client/src/app/shared/shared-forms/input-text.component.html index 4ea382bee..dbffcc250 100644 --- a/client/src/app/shared/shared-forms/input-text.component.html +++ b/client/src/app/shared/shared-forms/input-text.component.html @@ -4,6 +4,7 @@ [(ngModel)]="value" (ngModelChange)="update()" [readonly]="readonly" #input (click)="input.select()" (input)="update()" (change)="update()" [type]="inputType" class="form-control" [ngClass]="{ 'input-error': formError }" + [attr.aria-label]="ariaLabel" />