Can see directly the corresponding trace
This commit is contained in:
parent
1f4ce865aa
commit
3af70cf678
2 changed files with 13 additions and 5 deletions
|
|
@ -30,6 +30,7 @@
|
|||
stats.push({
|
||||
arch: stage.arch,
|
||||
name: stage.name,
|
||||
number: stage.number,
|
||||
status: [],
|
||||
steps: [],
|
||||
});
|
||||
|
|
@ -165,7 +166,14 @@
|
|||
class:bg-warning={step.status == "pending" || step.status == "running"}
|
||||
class:bg-info={step.status == "killed"}
|
||||
>
|
||||
{step.number}. {step.name}
|
||||
<a
|
||||
href="/api/users/{grade_idx[gsi].id_user}/works/{work.id}/grades/{grade_idx[gsi].id}/traces/{gs.stages[view_step.istage].number}/{step.number}"
|
||||
target="_blank"
|
||||
title="Voir le détail de cette étape"
|
||||
>
|
||||
{step.number}.
|
||||
</a>
|
||||
{step.name}
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
|
|
|
|||
Reference in a new issue