mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-10 02:15:11 +00:00
Fixing missing class for language select.
This commit is contained in:
parent
c444b3f0c0
commit
b7da6851aa
|
@ -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)}
|
||||
|
|
Loading…
Reference in a new issue