Merge pull request #1392 from LemmyNet/fix_language_select_custom

Fix language missing class.
This commit is contained in:
SleeplessOne1917 2023-06-20 00:23:38 +00:00 committed by GitHub
commit 87613009b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit c9a07885f35cf334d3cf167cb57587a8177fc3fb
Subproject commit 7fc71d0860bbe5c6d620ec27112350ffe5b9229c

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)}