Update front & back
All checks were successful
Tests / Declarative: Post Actions passed: 14
CI-Multi/pipeline/pr-main This commit looks good

This commit is contained in:
2026-02-22 13:16:54 +01:00
parent 6660035fa3
commit 9297bed50e
4 changed files with 66 additions and 9 deletions

View File

@@ -378,7 +378,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
<span class="summary-title">#{build.number}</span>
{#if build.commits.length === 0}
<span class="muted">Ejecución manual</span>
<span class="muted">
{build.trigger || 'Ejecución manual'}
</span>
{:else}
<span class="summary-commit">
{build.commits[0].commit} · {build.commits[0].author}
@@ -401,6 +403,13 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
</p>
{/if}
{#if build.trigger}
<p class="history-row">
<span>Disparo</span>
<span>{build.trigger}</span>
</p>
{/if}
<p class="history-row">
<span>Duración</span>
<span>{build.duration_seconds} s</span>
@@ -408,6 +417,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
{#if build.status === 'failure'}
<p class="history-message danger">Build fallida</p>
{:else if build.status === 'running'}
<p class="history-message running">En curso</p>
{:else}
<p class="history-message success">Correcto</p>
{/if}