kestra-io / kestra

:zap: Workflow Automation Platform. Orchestrate & Schedule code in any language, run anywhere, 500+ plugins. Alternative to Zapier, Rundeck, Camunda, Airflow...
https://kestra.io
Apache License 2.0
13.55k stars 1.17k forks source link

Flow trigger plugin is not displayed correctly — the columnar display truncates long text #6099

Closed anna-geller closed 1 day ago

anna-geller commented 3 days ago

Describe the issue

image

To reproduce, add 2 flows, one depending on another:

id: myflow
namespace: company.team

tasks:
  - id: hello
    type: io.kestra.plugin.core.log.Log
    message: Hello World!

triggers:
  - id: flow_trigger
    type: io.kestra.plugin.core.trigger.Flow
    preconditions:
      id: child_flow
      flows:
        - namespace: company.team
          flowId: child
          states: [SUCCESS]

and child flow:

id: child
namespace: company.team

tasks:
  - id: hello
    type: io.kestra.plugin.core.log.Log
    message: Hello from {{ flow.id }}

then run the child flow to reproduce the bug

Environment

anna-geller commented 1 day ago

@elevatebart maybe you can help with this one -- if we can't display the text directly, maybe at least show it on hover? 🙏