Daniel 2025-07-02 17:02:40 +08:00
parent 45f10bf62a
commit eca87831fe
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
10 changed files with 99 additions and 190 deletions

View file

@ -25,11 +25,10 @@ type LayoutTable struct {
*BaseLayout
Columns []*ViewTableColumn `json:"columns"` // 表格列
RowIDs []string `json:"rowIds"` // 行 ID用于自定义排序
}
func (layoutTable *LayoutTable) GetItemIDs() (ret []string) {
return layoutTable.RowIDs
// TODO RowIDs 字段已经废弃,计划于 2026 年 6 月 30 日后删除 https://github.com/siyuan-note/siyuan/issues/15194
//Deprecated
RowIDs []string `json:"rowIds"` // 行 ID用于自定义排序
}
func NewLayoutTable() *LayoutTable {