Skip to content

Commit

Permalink
[se] Fix bug 61868
Browse files Browse the repository at this point in the history
  • Loading branch information
GoshaZotov committed Aug 31, 2023
1 parent 44b1901 commit dac344f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cell/model/FormulaObjects/textanddataFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -2433,7 +2433,7 @@ function (window, undefined) {
cTEXTBEFORE.prototype.argumentsMin = 2;
cTEXTBEFORE.prototype.argumentsMax = 6;
cTEXTBEFORE.prototype.numFormat = AscCommonExcel.cNumFormatNone;
cTEXTBEFORE.prototype.argumentsType = [argType.text, argType.text, argType.number, argType.number, argType.number, argType.any];
cTEXTBEFORE.prototype.argumentsType = [argType.text, argType.text, argType.number, argType.logical, argType.logical, argType.any];
cTEXTBEFORE.prototype.isXLFN = true;
cTEXTBEFORE.prototype.arrayIndexes = {1: 1};
cTEXTBEFORE.prototype.Calculate = function (arg) {
Expand All @@ -2454,7 +2454,7 @@ function (window, undefined) {
cTEXTAFTER.prototype.argumentsMin = 2;
cTEXTAFTER.prototype.argumentsMax = 6;
cTEXTAFTER.prototype.numFormat = AscCommonExcel.cNumFormatNone;
cTEXTAFTER.prototype.argumentsType = [argType.text, argType.text, argType.number, argType.number, argType.number, argType.any];
cTEXTAFTER.prototype.argumentsType = [argType.text, argType.text, argType.number, argType.logical, argType.logical, argType.any];
cTEXTAFTER.prototype.isXLFN = true;
cTEXTAFTER.prototype.arrayIndexes = {1: 1};
cTEXTAFTER.prototype.Calculate = function (arg) {
Expand Down

0 comments on commit dac344f

Please sign in to comment.