mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-18 15:40:12 +01:00
🎨 Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394
This commit is contained in:
parent
37f950ba4f
commit
210a3ac547
1 changed files with 4 additions and 0 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue