Compare commits

...

1 Commits

Author SHA1 Message Date
Alex
3352d42414 fix(frontend): use bracket notation for tool variable paths (#2176) 2025-11-26 19:12:02 +02:00

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}`,
});
}
}