mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-24 08:01:38 +00:00
fix(frontend): link to schedule in runs discriminate isFlows
This commit is contained in:
@@ -375,7 +375,8 @@
|
||||
{:else if job && job.schedule_path}
|
||||
<Icon class="text-gray-700" data={faCalendar} scale={SMALL_ICON_SCALE} />
|
||||
<span class="mx-2"
|
||||
>Triggered by the schedule: <a href={`/schedule/add?edit=${job.schedule_path}`}
|
||||
>Triggered by the schedule: <a
|
||||
href={`/schedule/add?edit=${job.schedule_path}&isFlow=${job.job_kind == 'flow'}`}
|
||||
>{job.schedule_path}</a
|
||||
></span
|
||||
>
|
||||
|
||||
@@ -336,7 +336,9 @@ the bearer token they use has less privilege."
|
||||
<Icon class="text-gray-700" data={faCalendar} scale={SMALL_ICON_SCALE} />
|
||||
<span class="mx-2"
|
||||
>Triggered by the schedule: <a
|
||||
href={`/schedule/add?edit=${job.schedule_path}`}>{job.schedule_path}</a
|
||||
href={`/schedule/add?edit=${job.schedule_path}&isFlow=${
|
||||
job.job_kind == 'flow'
|
||||
}`}>{job.schedule_path}</a
|
||||
></span
|
||||
>
|
||||
{:else}
|
||||
|
||||
Reference in New Issue
Block a user