Skip to content

Commit

Permalink
[JENKINS-69555] Use textarea instead of input for parameter of type T…
Browse files Browse the repository at this point in the history
…extParameterDefinition (#269)

Change-Id: I99c4d21cf90a5e8830d664c3a3b7a5228f78ada3

Co-authored-by: Grzegorz Kochanski <Grzegorz.Kochanski@smart4aviation.aero>
Co-authored-by: Olivier Lamy <olamy@apache.org>
  • Loading branch information
3 people committed Mar 26, 2023
1 parent eb5ca1a commit 9446932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/main/js/view/templates/run-input-required.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{{#ifCond type '===' 'TextParameterDefinition'}}
<div class="form-group">
<label for="{{id}}-input-{{@index}}">{{name}}</label>
<input name="{{name}}" type="text" class="form-control" id="{{id}}-input-{{@index}}" value="{{definition.defaultVal}}">
<textarea name="{{name}}" type="text" class="form-control" id="{{id}}-input-{{@index}}">{{definition.defaultVal}}</textarea>
{{#if description}}<p class="help-block">{{description}}</p>{{/if}}
</div>
{{/ifCond}}
Expand Down

0 comments on commit 9446932

Please sign in to comment.