Fix: Variables within multiple parentheses cannot be displayed correctly. #12987 (#12988)

### What problem does this PR solve?
Fix: Variables within multiple parentheses cannot be displayed
correctly. #12987

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
balibabu
2026-02-04 17:54:02 +08:00
committed by GitHub
parent a37d287fad
commit ffdf19b27f
3 changed files with 9 additions and 4 deletions

View File

@ -1085,3 +1085,5 @@ export const BeginQueryTypeMap = {
[BeginQueryType.Integer]: TypesWithArray.Number,
[BeginQueryType.Boolean]: TypesWithArray.Boolean,
};
export const VariableRegex = /{([^{}]*)}/g;