Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-09-23 20:34:36 +08:00
parent 7975ccf8b5
commit 73869d7f69
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -541,6 +541,10 @@ func (value *Value) filter(other *Value, relativeDate, relativeDate2 *RelativeDa
return !value.Checkbox.Checked 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 return false
} }