add running default filter to list name column links if useful

This commit is contained in:
Christoph Kluge
2026-02-05 13:06:46 +01:00
parent 5616801f3e
commit 84d7a7aa7d

View File

@@ -319,11 +319,11 @@
<tr>
<td>
{#if type == "USER"}
<a href="/monitoring/user/{row.id}"
<a href="/monitoring/user/{row.id}{fetchRunning ? '?state=running' : ''}"
>{scrambleNames ? scramble(row.id) : row.id}</a
>
{:else if type == "PROJECT"}
<a href="/monitoring/jobs/?project={row.id}"
<a href="/monitoring/jobs/?project={row.id}{fetchRunning ? '&state=running' : ''}"
>{scrambleNames ? scramble(row.id) : row.id}</a
>
{:else}