fix(processors.override): Correct TOML tag name (#14880)

This commit is contained in:
Joshua Powers 2024-02-22 13:06:01 -05:00 committed by GitHub
parent 2942f84aa3
commit 8468850acb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ type Override struct {
NameOverride string `toml:"name_override"`
NamePrefix string `toml:"name_prefix"`
NameSuffix string `toml:"name_suffix"`
Tags map[string]string `toml:"tag"`
Tags map[string]string `toml:"tags"`
}
func (*Override) SampleConfig() string {