Browse Source

refactor: remove console.log

pull/1979/head
Wing-Kam Wong 2 years ago
parent
commit
7fd4d6caa3
  1. 1
      packages/nc-gui/components/project/spreadsheet/components/editColumn/FormulaOptions.vue

1
packages/nc-gui/components/project/spreadsheet/components/editColumn/FormulaOptions.vue

@ -221,7 +221,6 @@ export default {
} }
}, },
validateAgainstMeta(pt, arr = []) { validateAgainstMeta(pt, arr = []) {
console.log('pt.type= ' + pt.type)
if (pt.type === 'CallExpression') { if (pt.type === 'CallExpression') {
if (!this.availableFunctions.includes(pt.callee.name)) { if (!this.availableFunctions.includes(pt.callee.name)) {
arr.push(`'${pt.callee.name}' function is not available`) arr.push(`'${pt.callee.name}' function is not available`)

Loading…
Cancel
Save