From 5cb0a0b5e5dbed6e7b4c28134f6a67718de7d55d Mon Sep 17 00:00:00 2001 From: AmanuelAaron Date: Mon, 26 Aug 2024 10:28:15 -0400 Subject: [PATCH] fix: allow for objects inside array metadata to be typed properly --- master/internal/run/runs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/master/internal/run/runs.go b/master/internal/run/runs.go index 0e79271745c..7e624ded79a 100644 --- a/master/internal/run/runs.go +++ b/master/internal/run/runs.go @@ -112,7 +112,7 @@ func flattenMetadata(data map[string]any) (flatMetadata []model.RunMetadataIndex key: key, value: value, depth: entry.depth + 1, - array: entry.array, + array: false, }) } // if the value is a slice, push each element onto the stack.