🎨 Support modifying database column types Fix https://github.com/siyuan-note/siyuan/issues/9513

This commit is contained in:
Daniel 2023-10-27 22:28:56 +08:00
parent f273e0af19
commit a57c258fce
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
2 changed files with 61 additions and 0 deletions

View file

@ -415,6 +415,8 @@ func renderAttributeViewTable(attrView *av.AttributeView, view *av.View) (ret *a
tableCell.Value = &av.Value{ID: tableCell.ID, KeyID: col.ID, BlockID: rowID, Type: av.KeyTypeUpdated}
}
treenode.FillAttributeViewTableCellNilValue(tableCell, rowID, col.ID)
tableRow.Cells = append(tableRow.Cells, tableCell)
}
ret.Rows = append(ret.Rows, &tableRow)