We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af738e0 commit ae51f5fCopy full SHA for ae51f5f
helper/schema/field_reader_config.go
@@ -45,6 +45,11 @@ func (r *ConfigFieldReader) readField(
45
// the address with the real list index. i.e. set.50 might actually
46
// map to set.12 in the config, since it is in list order in the
47
// config, not indexed by set value.
48
+
49
+ updatedAddress := make([]string, len(address))
50
+ copy(updatedAddress, address)
51
+ address = updatedAddress
52
53
for i, v := range schemaList {
54
// Sets are the only thing that cause this issue.
55
if v.Type != TypeSet {
0 commit comments