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

feat: adds a side panel for complex logs that enables reordering and enabling fields (#3237)

This commit is contained in:
Amir Raminfar
2024-08-28 17:37:04 -07:00
committed by GitHub
parent 62a2ef9eb4
commit 85271a595a
31 changed files with 345 additions and 174 deletions

View File

@@ -22,7 +22,7 @@
ref="viewer"
:stream-source="useStackStream"
:entity="stack"
:visible-keys="visibleKeys"
:visible-keys="new Map<string[], boolean>()"
:show-container-name="true"
/>
</template>
@@ -38,7 +38,6 @@ const { name, scrollable = false } = defineProps<{
name: string;
}>();
const visibleKeys = ref<string[][]>([]);
const viewer = ref<ComponentExposed<typeof ViewerWithSource>>();
const store = useSwarmStore();
const { stacks } = storeToRefs(store) as unknown as { stacks: Ref<Stack[]> };