fix(web): iteration node‘s variableList updated

This commit is contained in:
zhaoying
2026-01-13 14:03:44 +08:00
parent f5e71f56e9
commit 2f13cb4cbc
3 changed files with 4 additions and 3 deletions

View File

@@ -91,6 +91,7 @@ const VariableSelect: FC<VariableSelectProps> = ({
showSearch
allowClear={allowClear}
filterOption={(input, option) => {
if (input === '/') return true;
if (option?.options) {
return option.label?.toLowerCase().includes(input.toLowerCase()) ||
option.options.some((opt: any) =>