Skip to content

Commit

Permalink
Add support for rendering object params on Run details page
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanGreene authored and tekton-robot committed Sep 13, 2022
1 parent 252bd60 commit 9e7a050
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/containers/Run/Run.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { UndefinedFilled20 as UndefinedIcon } from '@carbon/icons-react';
import {
Actions,
FormattedDuration,
Param,
ResourceDetails,
StatusIcon,
Table
Expand Down Expand Up @@ -130,7 +131,7 @@ function Run({ intl }) {
run?.spec?.params?.map(({ name, value }) => ({
id: name,
name,
value
value: <Param>{value}</Param>
})) || [];

function deleteResource() {
Expand Down

0 comments on commit 9e7a050

Please sign in to comment.