Skip to content

Commit

Permalink
Show the value in the promotion dialog (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
nenad committed Dec 6, 2023
1 parent 84173dc commit 993c372
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/build/deployment-form/deployment-form.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,10 @@ const DeploymentForm = ({
<FormSection title="Parameters" className={cx('deployment-form-row')}>
{state.parameters.length ? (
<div className={cx('deployment-form-parameters-list')}>
{state.parameters.map(({ key, id }) => (
{state.parameters.map(({ key, value, id }) => (
<div className={cx('deployment-form-parameters')} key={id}>
<span type="text" placeholder="key">{key}</span>
<span type="text" placeholder="value">[{value}]</span>
<Button type="button" onClick={handleRemoveParameter(id)}>Remove</Button>
</div>
))}
Expand Down

0 comments on commit 993c372

Please sign in to comment.