Browse Source

fix: remove unexpected $pt.name$

pull/2132/head
Wing-Kam Wong 2 years ago
parent
commit
d7126e47ec
  1. 3
      packages/nocodb-sdk/src/lib/formulaHelpers.ts

3
packages/nocodb-sdk/src/lib/formulaHelpers.ts

@ -84,9 +84,6 @@ export function substituteColumnIdWithAliasInFormula(
c.title === colNameOrId
);
pt.name = column?.title || ptRaw?.name || pt?.name;
if (pt.name[0] != '$' && pt.name[pt.name.length - 1] != '$') {
pt.name = '$' + pt.name + '$';
}
} else if (pt.type === 'BinaryExpression') {
substituteId(pt.left, ptRaw?.left);
substituteId(pt.right, ptRaw?.right);

Loading…
Cancel
Save