]> Untitled Git - lemmy-ui.git/commitdiff
Fixing missing class for language select.
authorDessalines <tyhou13@gmx.com>
Mon, 19 Jun 2023 15:53:18 +0000 (11:53 -0400)
committerDessalines <tyhou13@gmx.com>
Mon, 19 Jun 2023 15:53:18 +0000 (11:53 -0400)
src/shared/components/common/language-select.tsx

index 09e9c968dbf89c524409fff573b165dc920bb475..e80c345ec02c76c985c5b4163e5f0530791e448b 100644 (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)}