diff --git a/src/modules/navigation/partials/NavigationTableItem.vue b/src/modules/navigation/partials/NavigationTableItem.vue index 5f9064c0a0..e162f15de1 100644 --- a/src/modules/navigation/partials/NavigationTableItem.vue +++ b/src/modules/navigation/partials/NavigationTableItem.vue @@ -214,10 +214,13 @@ export default { }, }, watch: { - activeView() { - if (!this.isParentOfActiveView && this.activeView?.tableId === this.table?.id) { - this.isParentOfActiveView = true - } + activeView: { + immediate: true, + handler() { + if (!this.isParentOfActiveView && this.activeView?.tableId === this.table?.id) { + this.isParentOfActiveView = true + } + }, }, filterString() { if (!this.isParentOfActiveView && this.filterString && !this.table.title.toLowerCase().includes(this.filterString.toLowerCase())) {