Feat: Add agent advanced settings form #3221 (#8592)

### What problem does this PR solve?

Feat: Add agent advanced settings form #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-07-01 10:52:48 +08:00
committed by GitHub
parent 32f8b3ad77
commit 103027580e
12 changed files with 157 additions and 29 deletions

View File

@ -34,7 +34,7 @@ export function QueryVariable({
? nextOptions.map((x) => {
return {
...x,
options: x.options.filter((y) => toLower(y.type).startsWith(type)),
options: x.options.filter((y) => toLower(y.type).includes(type)),
};
})
: nextOptions;