We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5aa7205 commit c96bfc9Copy full SHA for c96bfc9
pkg/environment/environment.go
@@ -34,7 +34,7 @@ func (e *Environment) GetValueSetCollection() values.ValueSetCollection {
34
// defined in this environment for a specific app. If none is defined, an instance that does nothing will be returned.
35
func (e *Environment) GetAppValueSetCollectionProvider(appName string) values.ValueSetCollectionProvider {
36
37
- if appValueOverride, ok := e.AppValueOverrides[appName]; ok {
+ if appValueOverride, ok := e.Apps[appName]; ok {
38
return appValueSetCollectionProvider{
39
valueSetCollection: appValueOverride,
40
}
0 commit comments