1
0
mirror of https://github.com/amir20/dozzle.git synced 2026-01-03 03:27:29 +01:00

fix: fixes bug when switching between merged logs was not working

This commit is contained in:
Amir Raminfar
2024-05-26 18:40:53 -07:00
parent 19c800fc27
commit 518e3c8ac9

View File

@@ -12,7 +12,7 @@ const route = useRoute();
const pinnedLogsStore = usePinnedLogsStore();
const { pinnedLogs } = storeToRefs(pinnedLogsStore);
const ids = route.query.id as string[];
const ids = toRef(() => route.query.id as string[]);
watchEffect(() => {
if (ready.value) {