There was an error while loading. Please reload this page.
1 parent f998888 commit 6cdbdd6Copy full SHA for 6cdbdd6
1 file changed
src/modules/navigation/partials/NavigationTableItem.vue
@@ -214,10 +214,13 @@ export default {
214
},
215
216
watch: {
217
- activeView() {
218
- if (!this.isParentOfActiveView && this.activeView?.tableId === this.table?.id) {
219
- this.isParentOfActiveView = true
220
- }
+ activeView: {
+ immediate: true,
+ handler() {
+ if (!this.isParentOfActiveView && this.activeView?.tableId === this.table?.id) {
221
+ this.isParentOfActiveView = true
222
+ }
223
+ },
224
225
filterString() {
226
if (!this.isParentOfActiveView && this.filterString && !this.table.title.toLowerCase().includes(this.filterString.toLowerCase())) {
0 commit comments