mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-28 12:28:48 +01:00
🎨 Database block support specified view https://github.com/siyuan-note/siyuan/issues/10443
This commit is contained in:
parent
ab6a521f78
commit
6f7bb6bf6c
1 changed files with 3 additions and 0 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue