adds message if no tags attached to job

This commit is contained in:
Christoph Kluge 2024-09-10 09:23:01 +02:00
parent 71621a9dc4
commit c0b1e97602

View File

@ -315,7 +315,13 @@
{:else if filterTerm !== ""} {:else if filterTerm !== ""}
<ListGroup class="mb-3"> <ListGroup class="mb-3">
<ListGroupItem disabled> <ListGroupItem disabled>
<i>No used tags matching</i> <i>No attached tags matching.</i>
</ListGroupItem>
</ListGroup>
{:else}
<ListGroup class="mb-3">
<ListGroupItem disabled>
<i>Job has no attached tags.</i>
</ListGroupItem> </ListGroupItem>
</ListGroup> </ListGroup>
{/if} {/if}
@ -345,7 +351,7 @@
{:else if filterTerm !== ""} {:else if filterTerm !== ""}
<ListGroup class="mb-3"> <ListGroup class="mb-3">
<ListGroupItem disabled> <ListGroupItem disabled>
<i>No unused tags matching</i> <i>No unused tags matching.</i>
</ListGroupItem> </ListGroupItem>
</ListGroup> </ListGroup>
{/if} {/if}