Immediate update to isLoadingItems watchers.
This commit is contained in:
parent
0b5684ea0c
commit
0dd185a835
|
@ -55,7 +55,7 @@
|
||||||
query: Object,
|
query: Object,
|
||||||
isRepositoryLevel: Boolean,
|
isRepositoryLevel: Boolean,
|
||||||
open: true,
|
open: true,
|
||||||
isLoadingItems: false,
|
isLoadingItems: true,
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -86,9 +86,12 @@
|
||||||
if (this.isUsingElasticSearch)
|
if (this.isUsingElasticSearch)
|
||||||
this.loadOptions();
|
this.loadOptions();
|
||||||
},
|
},
|
||||||
isLoadingItems() {
|
isLoadingItems: {
|
||||||
|
handler() {
|
||||||
this.isLoadingOptions = this.isLoadingItems;
|
this.isLoadingOptions = this.isLoadingItems;
|
||||||
},
|
},
|
||||||
|
immediate: true
|
||||||
|
},
|
||||||
'query'() {
|
'query'() {
|
||||||
this.loadOptions();
|
this.loadOptions();
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,9 +59,12 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
isLoadingItems() {
|
isLoadingItems: {
|
||||||
|
handler() {
|
||||||
this.isLoadingOptions = this.isLoadingItems;
|
this.isLoadingOptions = this.isLoadingItems;
|
||||||
},
|
},
|
||||||
|
immediate: true
|
||||||
|
},
|
||||||
'query'() {
|
'query'() {
|
||||||
this.updateSelectedValues();
|
this.updateSelectedValues();
|
||||||
}
|
}
|
||||||
|
|
|
@ -291,7 +291,7 @@
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
isLoadingItems: false,
|
isLoadingItems: true,
|
||||||
isLoadingFilters: false,
|
isLoadingFilters: false,
|
||||||
collapseAll: false,
|
collapseAll: false,
|
||||||
taxonomyFiltersCollectionNames: {},
|
taxonomyFiltersCollectionNames: {},
|
||||||
|
|
|
@ -48,8 +48,11 @@ export const dynamicFilterTypeMixin = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
isLoadingItems() {
|
isLoadingItems: {
|
||||||
|
handler() {
|
||||||
this.isLoadingOptions = this.isLoadingItems;
|
this.isLoadingOptions = this.isLoadingItems;
|
||||||
|
},
|
||||||
|
immediate: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
Loading…
Reference in New Issue