fix(frontend): use bracket notation for tool variable paths

This commit is contained in:
Alex
2025-11-26 17:07:42 +00:00
parent 899b30da5e
commit 17bc22224c

View File

@@ -191,7 +191,7 @@ const useToolVariables = () => {
}
filteredActions.push({
label: `${action.name} (${tool.displayName || tool.name})`,
value: `tools.${toolIdentifier}.${action.name}`,
value: `tools['${toolIdentifier}'].${action.name}`,
});
}
}