Makes isLoading state not more dependent of items list on facets

This commit is contained in:
mateuswetah 2021-06-18 16:55:06 -03:00
parent d23f153570
commit 5532a07bd2
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ export const dynamicFilterTypeMixin = {
watch: {
isLoadingItems: {
handler() {
this.isLoadingOptions = this.isLoadingItems;
if (this.isUsingElasticSearch )
this.isLoadingOptions = this.isLoadingItems;
},
immediate: true
}