mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 22:30:56 +08:00
[SSE] Fix bug 69521
This commit is contained in:
@ -1286,8 +1286,8 @@ define([], function () {
|
||||
info.asc_setSymbol(landId);
|
||||
var arr = this.api.asc_getFormatCells(info); // all formats
|
||||
text = this.api.asc_getLocaleExample(arr[4], 1000.01, landId);
|
||||
text = text + ' ' + this.api.asc_getLocaleExample(arr[5], Asc.cDate().getExcelDateWithTime(), landId);
|
||||
text = text + ' ' + this.api.asc_getLocaleExample(arr[7], Asc.cDate().getExcelDateWithTime(), landId);
|
||||
text = text + ' ' + this.api.asc_getLocaleExample(arr[5], Asc.cDate().getExcelDateWithTime(true), landId);
|
||||
text = text + ' ' + this.api.asc_getLocaleExample(arr[7], Asc.cDate().getExcelDateWithTime(true), landId);
|
||||
}
|
||||
$('#fms-lbl-reg-settings').text(_.isEmpty(text) ? '' : this.strRegSettingsEx + text);
|
||||
}
|
||||
|
||||
@ -59,8 +59,8 @@ class ApplicationSettingsController extends Component {
|
||||
|
||||
const arr = api.asc_getFormatCells(info);
|
||||
const text4 = api.asc_getLocaleExample(arr[4], 1000.01, regCode),
|
||||
text5 = api.asc_getLocaleExample(arr[5], Asc.cDate().getExcelDateWithTime(), regCode),
|
||||
text6 = api.asc_getLocaleExample(arr[7], Asc.cDate().getExcelDateWithTime(), regCode);
|
||||
text5 = api.asc_getLocaleExample(arr[5], Asc.cDate().getExcelDateWithTime(true), regCode),
|
||||
text6 = api.asc_getLocaleExample(arr[7], Asc.cDate().getExcelDateWithTime(true), regCode);
|
||||
|
||||
this.props.storeApplicationSettings.setRegExample(`${text4} ${text5} ${text6}`);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user