Skip to content

Commit

Permalink
fix(ui): parameter placeholder should only display name (#7123)
Browse files Browse the repository at this point in the history
* remove `description` from parameter placeholder
  • Loading branch information
vahpetr authored Jun 9, 2021
1 parent a7e902e commit 3a0f72f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/components/parameter-row.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export default class ParameterRow extends Component {
value={ value }
required={ required }
disabled={!isExecute}
description={param.get("description") ? `${param.get("name")} - ${param.get("description")}` : `${param.get("name")}`}
description={param.get("name")}
onChange={ this.onChangeWrapper }
errors={ paramWithMeta.get("errors") }
schema={ schema }/>
Expand Down

0 comments on commit 3a0f72f

Please sign in to comment.