🎨 Database block support specified view https://github.com/siyuan-note/siyuan/issues/10443

This commit is contained in:
Daniel 2024-03-04 13:54:17 +08:00
parent ab6a521f78
commit 6f7bb6bf6c
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -972,6 +972,9 @@ func (table *Table) SortRows() {
// 将包含未编辑的行放在最后
table.Rows = append(editedRows, uneditedRows...)
if 1 > len(table.Rows) {
table.Rows = []*TableRow{}
}
}
func (table *Table) FilterRows(attrView *AttributeView) {