Skip to content

Commit

Permalink
[OPIK-887] Change flattening delimiter from "|" to "." in experiment …
Browse files Browse the repository at this point in the history
…configuration (#1150)
  • Loading branch information
andriidudar authored Jan 27, 2025
1 parent 84f4408 commit 080eaa2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const ConfigurationTab: React.FunctionComponent<ConfigurationTabProps> = ({
return experiments.reduce<Record<string, Record<string, FiledValue>>>(
(acc, experiment) => {
acc[experiment.id] = isObject(experiment.metadata)
? flattie(experiment.metadata, "|", true)
? flattie(experiment.metadata, ".", true)
: {};

return acc;
Expand Down

0 comments on commit 080eaa2

Please sign in to comment.