Skip to content

Commit

Permalink
fix: allow for objects inside array metadata to be typed properly
Browse files Browse the repository at this point in the history
  • Loading branch information
AmanuelAaron committed Aug 26, 2024
1 parent a1234a1 commit 5cb0a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion master/internal/run/runs.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5cb0a0b

Please sign in to comment.