From 9e7a050a07b763141587663a42596de28f61a5e0 Mon Sep 17 00:00:00 2001 From: Alan Greene Date: Tue, 13 Sep 2022 15:49:23 +0100 Subject: [PATCH] Add support for rendering object params on Run details page --- src/containers/Run/Run.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/containers/Run/Run.js b/src/containers/Run/Run.js index 0ce5dd1b7..c3b82ea46 100644 --- a/src/containers/Run/Run.js +++ b/src/containers/Run/Run.js @@ -19,6 +19,7 @@ import { UndefinedFilled20 as UndefinedIcon } from '@carbon/icons-react'; import { Actions, FormattedDuration, + Param, ResourceDetails, StatusIcon, Table @@ -130,7 +131,7 @@ function Run({ intl }) { run?.spec?.params?.map(({ name, value }) => ({ id: name, name, - value + value: {value} })) || []; function deleteResource() {