diff --git a/src/ui/src/views/custom-query/define.vue b/src/ui/src/views/custom-query/define.vue index 8d4b38cbf4..63c9d7f263 100644 --- a/src/ui/src/views/custom-query/define.vue +++ b/src/ui/src/views/custom-query/define.vue @@ -21,7 +21,7 @@ - - @@ -332,6 +332,12 @@ operator: property.operator, value: property.value === 'true' }) + } else if (property.operator === '$multilike') { + param.condition.push({ + field: property.propertyId, + operator: property.operator, + value: property.value.split('\n').filter(str => str.trim().length).map(str => str.trim()) + }) } else { let operator = property.operator let value = property.value