From e786320a07a0038329b631188e2b4a3e930ac412 Mon Sep 17 00:00:00 2001 From: Mallika Kaur Oberoi Date: Wed, 15 Jan 2025 08:30:10 -0800 Subject: [PATCH] fix(cmd): Add SkipMissingValues flag in Playground (#292) --- cmd/substation/playground.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/substation/playground.go b/cmd/substation/playground.go index 3c2e6681..ec3fd06b 100644 --- a/cmd/substation/playground.go +++ b/cmd/substation/playground.go @@ -330,7 +330,7 @@ func handleRun(w http.ResponseWriter, r *http.Request) { } msgs := []*message.Message{ - message.New().SetData([]byte(request.Input)), + message.New().SetData([]byte(request.Input)).SkipMissingValues(), message.New().AsControl(), }