fix condition

This commit is contained in:
Pete Matsyburka
2024-08-08 06:53:39 +03:00
parent 0dcd97f49b
commit db22fe7518
+1 -1
View File
@@ -925,7 +925,7 @@ export default {
return field.conditions.reduce((acc, c) => {
const field = this.fieldsUuidIndex[c.field_uuid]
if (!this.checkFieldConditions(field)) {
if (['not_empty', 'checked', 'equal', 'contains'].includes(c.action) && !this.checkFieldConditions(field)) {
return false
}