mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-03 23:38:49 +01:00
🎨 Improve database table view
This commit is contained in:
parent
fcd134ad2d
commit
2843350737
3 changed files with 8 additions and 10 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue