diff --git a/assets/components/LogViewer/ContainerEventLogItem.vue b/assets/components/LogViewer/ContainerEventLogItem.vue index b7c53e06..22eaa5cd 100644 --- a/assets/components/LogViewer/ContainerEventLogItem.vue +++ b/assets/components/LogViewer/ContainerEventLogItem.vue @@ -49,10 +49,7 @@ const nextContainer = computed( [ ...allContainers.value.filter( (c) => - c.host === container.value.host && - c.created > container.value.created && - c.name === container.value.name && - c.state === "running", + c.host === container.value.host && c.created > container.value.created && c.name === container.value.name, ), ].sort((a, b) => +a.created - +b.created)[0], );