diff --git a/kernel/av/filter.go b/kernel/av/filter.go index 3213c1ee7..d57293c68 100644 --- a/kernel/av/filter.go +++ b/kernel/av/filter.go @@ -541,6 +541,10 @@ func (value *Value) filter(other *Value, relativeDate, relativeDate2 *RelativeDa return !value.Checkbox.Checked } } + case KeyTypeRelation: + if nil != value.Relation && nil != other && nil != other.Relation { + return filterTextContent(operator, value.Relation.Contents[0].Block.Content, other.Relation.Contents[0].Block.Content) + } } return false }