From d3eb0cd285fbb40a82ae8de50b8a9e0d69ac8117 Mon Sep 17 00:00:00 2001 From: Momin Huzaifa Date: Fri, 22 May 2026 16:27:26 +0530 Subject: [PATCH] fixed malformed spaces inside tag --- internal/chart/v3/dependency.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/chart/v3/dependency.go b/internal/chart/v3/dependency.go index 4e34a213e..ae8ed45e3 100644 --- a/internal/chart/v3/dependency.go +++ b/internal/chart/v3/dependency.go @@ -37,7 +37,7 @@ type Dependency struct { // used to fetch the repository index. Repository string `json:"repository" yaml:"repository"` // Digest - Digest string `json: "digest,omitempty" yaml: "digest,omitempty"` + Digest string `json:"digest,omitempty" yaml:"digest,omitempty"` // A yaml path that resolves to a boolean, used for enabling/disabling charts (e.g. subchart1.enabled ) Condition string `json:"condition,omitempty" yaml:"condition,omitempty"` // Tags can be used to group charts for enabling/disabling together