1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

fix: fixes logic for extracing swarm ids. fixed #2184 (#2185)

This commit is contained in:
Amir Raminfar
2023-05-10 10:54:41 -07:00
committed by GitHub
parent 1ffa17ef48
commit b7d5229534
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
<container-health :health="container.health"></container-health>
</div>
<div class="column is-ellipsis">
{{ container.name }}<span v-if="container.isSwarm">.{{ container.swarmId }}</span>
{{ container.name }}<span v-if="container.isSwarm">{{ container.swarmId }}</span>
<span class="tag is-dark">{{ container.image.replace(/@sha.*/, "") }}</span>
</div>
</div>