🎨 Add Relation column to database table view https://github.com/siyuan-note/siyuan/issues/9888

This commit is contained in:
Daniel 2023-12-25 15:56:19 +08:00
parent 9cf2d34111
commit bfae99fe3d
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -614,7 +614,7 @@ func (value *Value) CompareOperator(other *Value, operator FilterOperator) bool
contains := false
for _, c := range value.Relation.Contents {
for _, c1 := range other.Relation.Contents {
if c == c1 {
if strings.Contains(c, c1) {
contains = true
break
}
@ -624,8 +624,8 @@ func (value *Value) CompareOperator(other *Value, operator FilterOperator) bool
case FilterOperatorDoesNotContain:
contains := false
for _, c := range value.Relation.Contents {
for _, c2 := range other.Relation.Contents {
if c == c2 {
for _, c1 := range other.Relation.Contents {
if strings.Contains(c, c1) {
contains = true
break
}