Merge pull request #1088 from jwhitmarsh/fix/1079

Fix aria-label for language select
This commit is contained in:
SleeplessOne1917 2023-06-05 23:26:23 +00:00 committed by GitHub
commit 6612bea325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ export class LanguageSelect extends Component<LanguageSelectProps, any> {
)} )}
id={this.id} id={this.id}
onChange={linkEvent(this, this.handleLanguageChange)} onChange={linkEvent(this, this.handleLanguageChange)}
aria-label="action" aria-label={i18n.t("language_select_placeholder")}
multiple={this.props.multiple} multiple={this.props.multiple}
disabled={this.props.disabled} disabled={this.props.disabled}
> >