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

feat: adds show hostname and container name to dropdown in mutli log mode (#3406)

This commit is contained in:
Amir Raminfar
2024-11-19 08:46:20 -08:00
committed by GitHub
parent 7ee260311e
commit bd7f6bc886
17 changed files with 79 additions and 42 deletions

View File

@@ -17,7 +17,6 @@
:stream-source="useMergedStream"
:entity="containers"
:visible-keys="new Map<string[], boolean>()"
:show-container-name="true"
/>
</template>
</ScrollableView>
@@ -37,5 +36,5 @@ const viewer = ref<ComponentExposed<typeof ViewerWithSource>>();
const { allContainersById, ready } = storeToRefs(containerStore);
const containers = computed(() => ids.map((id) => allContainersById.value[id]));
provideLoggingContext(containers);
provideLoggingContext(containers, { showContainerName: true, showHostname: false });
</script>