Skip to content

Commit

Permalink
Merge pull request galaxyproject#16942 from ElectronicBlueberry/fix-s…
Browse files Browse the repository at this point in the history
…elect-header-not-showing

Fix select parameter doesn't show parameter name in UI
  • Loading branch information
martenson authored Oct 30, 2023
2 parents 1a999e8 + a3e7eed commit 082c900
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 082c900

Please sign in to comment.