Skip to content

Commit

Permalink
fix(formula): fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
wpxp123456 authored and wpxp123456 committed Oct 31, 2024
1 parent 818eb6e commit 3494d7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class ModeMult extends BaseFunction {
return valueObject;
}

if (valueObject.isNull() || valueObject.isBoolean()) {
if (valueObject.isNull() || valueObject.isBoolean() || valueObject.isString()) {
continue;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export class ModeSngl extends BaseFunction {
return valueObject;
}

if (valueObject.isNull() || valueObject.isBoolean()) {
if (valueObject.isNull() || valueObject.isBoolean() || valueObject.isString()) {
continue;
}

Expand Down

0 comments on commit 3494d7d

Please sign in to comment.