diff --git a/assets/components/LogViewer/EventSource.vue b/assets/components/LogViewer/EventSource.vue index 1f82045d..6b98bcde 100644 --- a/assets/components/LogViewer/EventSource.vue +++ b/assets/components/LogViewer/EventSource.vue @@ -1,5 +1,8 @@ @@ -11,7 +14,7 @@ const { entity, streamSource } = $defineProps<{ entity: T; }>(); -const { messages, loadOlderLogs, isLoadingMore } = streamSource($$(entity)); +const { messages, loadOlderLogs, isLoadingMore, opened } = streamSource($$(entity)); const { loadingMore } = useLoggingContext(); const enabled = ref(true); diff --git a/assets/components/LogViewer/LogList.vue b/assets/components/LogViewer/LogList.vue index 9c285db9..6be89b49 100644 --- a/assets/components/LogViewer/LogList.vue +++ b/assets/components/LogViewer/LogList.vue @@ -1,9 +1,5 @@