Skip to content

Commit

Permalink
Merge pull request galaxyproject#16943 from mvdbeek/backport_select_p…
Browse files Browse the repository at this point in the history
…aram_name_fallback

[23.1] Backport Fix select parameter doesn't show parameter name in UI
  • Loading branch information
dannon authored Oct 30, 2023
2 parents 12b20c6 + 82c9625 commit f6741e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Form/FormInputs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div v-for="(input, index) in inputs" :key="index">
<div v-if="input.type == 'conditional'" class="ui-portlet-section mt-3">
<div class="portlet-header">
<b>{{ input.test_param.label }}</b>
<b>{{ input.test_param.label || input.test_param.name }}</b>
</div>
<div class="portlet-content">
<FormElement
Expand Down

0 comments on commit f6741e6

Please sign in to comment.