This commit is contained in:
rahul shukla 2020-01-30 15:22:39 +05:30
parent 3ac48ee883
commit b40c2173a8
1 changed files with 2 additions and 2 deletions

View File

@ -350,7 +350,7 @@
attribute_type_indexes: {
'product': 0
},
},
condition_operators: {
'price': [{
@ -516,7 +516,7 @@
if (matchedAttribute[0]['type'] == 'multiselect' || matchedAttribute[0]['type'] == 'checkbox') {
this.condition.operator = '{}';
this.condition.value = this.condition.value == '' && this.condition.value != undefined ? [] : this.condition.value;
this.condition.value = this.condition.value == '' && this.condition.value != undefined ? [] : [ this.condition.value ];
}
return matchedAttribute[0];