diff --git a/src/components/common/VnLog.vue b/src/components/common/VnLog.vue index e2f18866a45..7020c848961 100644 --- a/src/components/common/VnLog.vue +++ b/src/components/common/VnLog.vue @@ -68,7 +68,6 @@ const filter = { }, }, ], - where: { and: [{ originFk: route.params.id }] }, }; const paginate = ref(); @@ -267,13 +266,6 @@ onMounted(() => { onUnmounted(() => { stateStore.rightDrawer = false; }); - -watch( - () => router.currentRoute.value.params.id, - () => { - applyFilter(); - }, -);