Fixing missing class for language select.

This commit is contained in:
Dessalines 2023-06-19 11:53:18 -04:00
parent c444b3f0c0
commit b7da6851aa

View file

@ -100,8 +100,8 @@ export class LanguageSelect extends Component<LanguageSelectProps, any> {
return (
<select
className={classNames("lang-select-action", {
"form-control custom-select": !this.props.iconVersion,
className={classNames("lang-select-action custom-select w-auto", {
"form-control": !this.props.iconVersion,
})}
id={this.id}
onChange={linkEvent(this, this.handleLanguageChange)}