🎨 Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394

This commit is contained in:
Daniel 2023-10-11 10:04:39 +08:00
parent 37f950ba4f
commit 210a3ac547
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -578,6 +578,10 @@ func (table *Table) FilterRows() {
case FilterOperatorIsNotEmpty: case FilterOperatorIsNotEmpty:
pass = false pass = false
} }
if KeyTypeText != row.Cells[index].ValueType {
pass = false
}
break break
} }