mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
This commit is contained in:
parent
063230af03
commit
a30110b5d3
1 changed files with 7 additions and 5 deletions
|
@ -546,11 +546,13 @@ module.exports = React.createClass({
|
|||
},
|
||||
|
||||
onLanguageChange: function(l) {
|
||||
UserSettingsStore.setLocalSetting('language', l);
|
||||
this.setState({
|
||||
language: l,
|
||||
});
|
||||
PlatformPeg.get().reload();
|
||||
if(this.state.language !== l) {
|
||||
UserSettingsStore.setLocalSetting('language', l);
|
||||
this.setState({
|
||||
language: l,
|
||||
});
|
||||
PlatformPeg.get().reload();
|
||||
}
|
||||
},
|
||||
|
||||
_renderLanguageSetting: function () {
|
||||
|
|
Loading…
Reference in a new issue