[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 {
|
class _FunctionGroups extends Component {
|
||||||
constructor (props) {
|
constructor (props) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
|
Common.Notifications.on('changeFuncLang', () => {
|
||||||
|
this.api = Common.EditorApi.get();
|
||||||
|
this.init();
|
||||||
|
});
|
||||||
}
|
}
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
Common.Notifications.on('document:ready', () => {
|
Common.Notifications.on('document:ready', () => {
|
||||||
|
|
|
@ -77,6 +77,7 @@ class ApplicationSettingsController extends Component {
|
||||||
onFormulaLangChange(value) {
|
onFormulaLangChange(value) {
|
||||||
LocalStorage.setItem("sse-settings-func-lang", value);
|
LocalStorage.setItem("sse-settings-func-lang", value);
|
||||||
this.initRegSettings();
|
this.initRegSettings();
|
||||||
|
Common.Notifications.trigger('changeFuncLang');
|
||||||
}
|
}
|
||||||
|
|
||||||
onRegSettings(regCode) {
|
onRegSettings(regCode) {
|
||||||
|
|
Loading…
Reference in a new issue