mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00

- Added missing aria-label to delete buttons
- Moved hardcoded translation to translation files
- Fix color contrast issues on buttons
- Fix minor alignment issues
- Added missing aria labels to input and select elements
(cherry picked from commit 52c0977489
)
8 lines
484 B
HTML
8 lines
484 B
HTML
<input [attr.aria-label]="'process.new.parameter.label' | translate" required #string="ngModel" type="text" name="string-value-{{index}}" class="form-control" id="string-value-{{index}}" [ngModel]="value" (ngModelChange)="setValue($event)"/>
|
|
<div *ngIf="string.invalid && (string.dirty || string.touched)"
|
|
class="alert alert-danger validation-error mb-0">
|
|
<div *ngIf="string.errors.required">
|
|
{{'process.new.parameter.string.required' | translate}}
|
|
</div>
|
|
</div>
|