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