You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a tiny mistake on the latest master commit caused anonymous function not work for column calculator, and here it is:
core/src/behaviors/Column.js line 393 } else if (calculator.test(REGEX_ANON_FUNC)) { calculator is the function literal string, not an regex, this line should be } else if (calculator.match(REGEX_ANON_FUNC)) {
Correct this and it would work fine.
The text was updated successfully, but these errors were encountered:
There is a tiny mistake on the latest master commit caused anonymous function not work for column calculator, and here it is:
core/src/behaviors/Column.js line 393
} else if (calculator.test(REGEX_ANON_FUNC)) {
calculator
is the function literal string, not an regex, this line should be} else if (calculator.match(REGEX_ANON_FUNC)) {
Correct this and it would work fine.
The text was updated successfully, but these errors were encountered: