[ACS-3546] Add missing labels to folder dialog (#7907)

This commit is contained in:
MichalKinas
2022-10-19 14:43:04 +02:00
committed by GitHub
parent b12d1b4a44
commit d788866cea

View File

@@ -8,6 +8,7 @@
<input
id="adf-folder-name-input"
placeholder="{{ 'CORE.FOLDER_DIALOG.FOLDER_NAME.LABEL' | translate }}"
[attr.aria-label]="'CORE.FOLDER_DIALOG.FOLDER_NAME.LABEL' | translate"
matInput
required
[formControlName]="'name'"
@@ -29,6 +30,7 @@
id="adf-folder-title-input"
matInput
placeholder="{{ 'CORE.FOLDER_DIALOG.FOLDER_TITLE.LABEL' | translate }}"
[attr.aria-label]="'CORE.FOLDER_DIALOG.FOLDER_TITLE.LABEL' | translate"
[formControlName]="'title'"
/>
</mat-form-field>
@@ -38,6 +40,7 @@
id="adf-folder-description-input"
matInput
placeholder="{{ 'CORE.FOLDER_DIALOG.FOLDER_DESCRIPTION.LABEL' | translate }}"
[attr.aria-label]="'CORE.FOLDER_DIALOG.FOLDER_DESCRIPTION.LABEL' | translate"
rows="4"
[formControlName]="'description'">
</textarea>