Skip to content

Commit

Permalink
🎨 Improve handling of database column filters containing empty values F…
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Oct 11, 2023
1 parent 37f950b commit 210a3ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions kernel/av/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,10 @@ func (table *Table) FilterRows() {
case FilterOperatorIsNotEmpty:
pass = false
}

if KeyTypeText != row.Cells[index].ValueType {
pass = false
}
break
}

Expand Down

0 comments on commit 210a3ac

Please sign in to comment.