1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

fix: removes empty containers (#3511)

This commit is contained in:
Amir Raminfar
2025-01-06 13:40:29 -08:00
committed by GitHub
parent 151a3efb16
commit a1a9031cda
6 changed files with 9 additions and 3 deletions

View File

@@ -80,8 +80,12 @@
active-class="menu-active"
@click.alt.stop.prevent="pinnedStore.pinContainer(item)"
:title="item.name"
class="group auto-cols-[auto_max-content_max-content]"
class="group auto-cols-[content_max_auto_max-content_max-content]"
>
<div
class="status data-[state=exited]:status-error data-[state=running]:status-success"
:data-state="item.state"
></div>
<div class="truncate">
{{ item.name }}
</div>
@@ -215,7 +219,7 @@ const toggleShowAllContainers = () => (showAllContainers.value = !showAllContain
}
li.exited {
@apply opacity-50;
@apply opacity-75;
}
li.deleted {