[SSE mobile] Fix Bug 51146
This commit is contained in:
parent
aab98b4beb
commit
55e22d914f
|
@ -10,6 +10,11 @@ import {AddFunction} from '../../view/add/AddFunction';
|
|||
class _FunctionGroups extends Component {
|
||||
constructor (props) {
|
||||
super(props);
|
||||
|
||||
Common.Notifications.on('changeFuncLang', () => {
|
||||
this.api = Common.EditorApi.get();
|
||||
this.init();
|
||||
});
|
||||
}
|
||||
componentDidMount() {
|
||||
Common.Notifications.on('document:ready', () => {
|
||||
|
|
|
@ -77,6 +77,7 @@ class ApplicationSettingsController extends Component {
|
|||
onFormulaLangChange(value) {
|
||||
LocalStorage.setItem("sse-settings-func-lang", value);
|
||||
this.initRegSettings();
|
||||
Common.Notifications.trigger('changeFuncLang');
|
||||
}
|
||||
|
||||
onRegSettings(regCode) {
|
||||
|
|
Loading…
Reference in a new issue