Describe the bug
- write variable in string nested in an array, the script received
$var:f/Narration/jina_api_key but not real value
- not found a way to concat variable/resource with a string in genrated UI
To reproduce
interface Header {
value: string;
}
export async function main(
key: string,
header: Header,
headers: Header[],
) {
console.log(`key: ${url}`);
console.log(`Header: ${header.value}`);
console.log(`HeaderArray: ${headers[0].value}`)
}
write variable in generated UI
Expected behavior
script received actual value
Screenshots
Browser information
No response
Application version
No response
Additional Context
No response