Merge pull request #31119 from bpfoster/fix-subchart-value-removal
Some checks failed
build-test / build (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
golangci-lint / golangci-lint (push) Has been cancelled

fix: null merge
This commit is contained in:
Terry Howe 2025-12-13 08:48:29 -07:00 committed by GitHub
commit bfc4534772
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -283,6 +283,11 @@ func coalesceTablesFullKey(printf printFn, dst, src map[string]interface{}, pref
if dst == nil {
return src
}
for key, val := range dst {
if val == nil {
src[key] = nil
}
}
// Because dest has higher precedence than src, dest values override src
// values.
for key, val := range src {