Open wrussell1999 opened 3 days ago
i would like to do this :-) please assign this to me
The first output is expanded by default — that's expected. What's unexpected is that the expression is showing only outputs.
instead of full outputs expression outputs.mytask.outputName
Seems like regression introduced in PR to https://github.com/kestra-io/kestra/issues/5523
Reproducer flow:
id: get_data
namespace: company.team
inputs:
- id: data
displayName: Select Data to Download
type: SELECT
values:
- customers
- employees
- products
- stores
- suppliers
defaults: customers
tasks:
- id: extract
type: io.kestra.plugin.core.http.Download
uri: https://huggingface.co/datasets/kestra/datasets/resolve/main/ion/{{ inputs.data }}.ion
outputs:
- id: data
type: FILE
value: "{{ outputs.extract.uri }}"
Describe the issue
When first opening the Outputs tab and no outputs are selected, Debug Outputs shows up with
{{ outputs. }}
which is invalid. It should instead say{{ outputs }}
. Seems to do it on any flow you run because the first output is not selected correctly.Example Flow that generated this behaviour:
Another:
Environment
develop
EE 1e8413ddevelop
OSS 0e2328c