🎨 Creating a dailynote existed no longer expands the doc tree https://github.com/siyuan-note/siyuan/issues/9959

This commit is contained in:
Daniel 2023-12-24 09:40:01 +08:00
parent 44bc3c15ef
commit 2953870db5
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -801,6 +801,9 @@ func updateAttributeViewColRelation(operation *Operation) (err error) {
}
isSameAv := srcAv.ID == destAv.ID
if isSameAv {
destAv = srcAv
}
for _, keyValues := range srcAv.KeyValues {
if keyValues.Key.ID == operation.KeyID {
@ -857,6 +860,13 @@ func updateAttributeViewColRelation(operation *Operation) (err error) {
Relation: &av.Relation{AvID: operation.AvID, IsTwoWay: operation.IsTwoWay, BackKeyID: operation.KeyID},
},
})
for _, v := range destAv.Views {
switch v.LayoutType {
case av.LayoutTypeTable:
v.Table.Columns = append(v.Table.Columns, &av.ViewTableColumn{ID: operation.KeyID})
}
}
}
err = av.SaveAttributeView(srcAv)