mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 20:31:13 +00:00
Merge pull request #1392 from LemmyNet/fix_language_select_custom
Fix language missing class.
This commit is contained in:
commit
87613009b8
2 changed files with 3 additions and 3 deletions
|
@ -1 +1 @@
|
|||
Subproject commit c9a07885f35cf334d3cf167cb57587a8177fc3fb
|
||||
Subproject commit 7fc71d0860bbe5c6d620ec27112350ffe5b9229c
|
|
@ -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