Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2023-10-20 23:40:39 +08:00
commit 4f928dc579

View file

@ -653,9 +653,11 @@ func (table *Table) FilterRows() {
operator := table.Filters[j].Operator
if nil == row.Cells[index].Value {
switch operator {
case FilterOperatorIsNotEmpty:
if FilterOperatorIsNotEmpty == operator {
pass = false
} else if FilterOperatorIsEmpty == operator {
pass = true
break
}
if KeyTypeText != row.Cells[index].ValueType {