mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-03 19:41:31 +08:00
🎨 Add multi-select type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8695
This commit is contained in:
parent
801b06117a
commit
96e7044baf
@ -396,20 +396,20 @@ func removeAttributeViewColumnOption(operation *Operation) (err error) {
|
||||
|
||||
colIndex = i
|
||||
|
||||
for _, opt := range col.Options {
|
||||
for j, opt := range col.Options {
|
||||
if opt.Name != optName {
|
||||
continue
|
||||
}
|
||||
|
||||
col.Options = append(col.Options[:i], col.Options[i+1:]...)
|
||||
col.Options = append(col.Options[:j], col.Options[j+1:]...)
|
||||
break
|
||||
}
|
||||
break
|
||||
}
|
||||
|
||||
for _, row := range attrView.Rows {
|
||||
for k, cell := range row.Cells {
|
||||
if colIndex != k {
|
||||
for i, cell := range row.Cells {
|
||||
if colIndex != i {
|
||||
continue
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user