🎨 Improve database table view

This commit is contained in:
Daniel 2023-12-18 22:29:17 +08:00
parent fcd134ad2d
commit 2843350737
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 8 additions and 10 deletions

View file

@ -727,7 +727,7 @@ func (table *Table) FilterRows() {
rows := []*TableRow{}
for _, row := range table.Rows {
block := row.GetBlockValue()
if block.NotAffectFilter() {
if nil != block && block.NotAffectFilter() {
rows = append(rows, row)
continue
}