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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user