We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8977a commit b2e4bf1Copy full SHA for b2e4bf1
packages/cubejs-schema-compiler/src/compiler/YamlCompiler.ts
@@ -236,12 +236,6 @@ export class YamlCompiler {
236
} else if (str[i] === '\\' && str[i + 1] === '}' && stateStack.length === 0) {
237
result.push('\\}');
238
i += 1;
239
- } else if (str[i] === '{' && str[i + 1] === '{' && peek()?.inFormattedStr) {
240
- result.push('{{');
241
- i += 1;
242
- } else if (str[i] === '}' && str[i + 1] === '}' && peek()?.inFormattedStr) {
243
- result.push('}}');
244
245
} else if (str[i] === '{' && peek()?.inFormattedStr) {
246
result.push(str[i]);
247
stateStack.push({ inTemplate: true, depth: 1 });
0 commit comments