mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-12-02 01:01:14 +00:00
Adding a warning for deselecting the undetermined language. (#945)
- Fixes #930
This commit is contained in:
parent
7721d41f6d
commit
cc76092cf2
2 changed files with 33 additions and 28 deletions
|
@ -1 +1 @@
|
|||
Subproject commit 21808b45ea3ef7fa91654d4f6738b5144da6bfe7
|
||||
Subproject commit 7379716231b9f7e67f710751c839398b7ab5d65e
|
|
@ -47,6 +47,10 @@ export class LanguageSelect extends Component<LanguageSelectProps, any> {
|
|||
return this.props.iconVersion ? (
|
||||
this.selectBtn
|
||||
) : (
|
||||
<div>
|
||||
<div className="alert alert-warning" role="alert">
|
||||
{i18n.t("undetermined_language_warning")}
|
||||
</div>
|
||||
<div className="form-group row">
|
||||
<label
|
||||
className={classNames("col-form-label", {
|
||||
|
@ -76,6 +80,7 @@ export class LanguageSelect extends Component<LanguageSelectProps, any> {
|
|||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue