Skip to content

Commit 6603b3c

Browse files
committed
fix
1 parent 10ece58 commit 6603b3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/element_choice.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ func (c *Choice) Clone() *Choice {
1212
Option: make([]string, len(c.Option)),
1313
Checked: c.Checked,
1414
}
15-
copy(r.Option, r.Option)
15+
copy(r.Option, c.Option)
1616
return r
1717
}

0 commit comments

Comments
 (0)