🎨 Improve av option editing https://github.com/siyuan-note/siyuan/issues/11484
This commit is contained in:
parent
b65d4f6742
commit
4a668ab414
1 changed files with 25 additions and 5 deletions
|
@ -3468,7 +3468,7 @@ func updateAttributeViewColumnOption(operation *Operation) (err error) {
|
|||
found := false
|
||||
if oldName != newName {
|
||||
for _, opt := range key.Options {
|
||||
if newName == opt.Name { // 如果选项名已经存在则直接使用
|
||||
if newName == opt.Name { // 如果选项已经存在则直接使用
|
||||
found = true
|
||||
newColor = opt.Color
|
||||
break
|
||||
|
@ -3497,13 +3497,33 @@ func updateAttributeViewColumnOption(operation *Operation) (err error) {
|
|||
continue
|
||||
}
|
||||
|
||||
for i, opt := range value.MSelect {
|
||||
if oldName == opt.Content {
|
||||
value.MSelect[i].Content = newName
|
||||
value.MSelect[i].Color = newColor
|
||||
found = false
|
||||
for _, opt := range value.MSelect {
|
||||
if newName == opt.Content {
|
||||
found = true
|
||||
break
|
||||
}
|
||||
}
|
||||
if found {
|
||||
idx := -1
|
||||
for i, opt := range value.MSelect {
|
||||
if oldName == opt.Content {
|
||||
idx = i
|
||||
break
|
||||
}
|
||||
}
|
||||
if 0 <= idx {
|
||||
value.MSelect = util.RemoveElem(value.MSelect, idx)
|
||||
}
|
||||
} else {
|
||||
for i, opt := range value.MSelect {
|
||||
if oldName == opt.Content {
|
||||
value.MSelect[i].Content = newName
|
||||
value.MSelect[i].Color = newColor
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue