From 378291cdf95f2a7e65fd528abce29a3e07275047 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Thu, 23 Apr 2026 10:32:18 -0500 Subject: [PATCH] fix(config): correct portsAttributes JSON struct tag typo --- pkg/devcontainer/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/devcontainer/config/config.go b/pkg/devcontainer/config/config.go index 26ac3d447..b858114e6 100644 --- a/pkg/devcontainer/config/config.go +++ b/pkg/devcontainer/config/config.go @@ -57,7 +57,7 @@ type DevContainerConfigBase struct { ForwardPorts types.StrIntArray `json:"forwardPorts,omitempty"` // Set default properties that are applied when a specific port number is forwarded. - PortsAttributes map[string]PortAttribute `json:"portAttributes,omitempty"` + PortsAttributes map[string]PortAttribute `json:"portsAttributes,omitempty"` // Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. OtherPortsAttributes *PortAttribute `json:"otherPortsAttributes,omitempty"`