Skip to content

Commit

Permalink
Add label to input parameters without labels.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Nov 6, 2018
1 parent 5a5b4ab commit 4812586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/workflow/workflow-view-data.js
Expand Up @@ -9,7 +9,7 @@ var DataInputView = Backbone.View.extend({
this.nodeView = options.nodeView;
this.terminalElement = options.terminalElement;

this.$el.attr("name", this.input.name).html(this.input.label);
this.$el.attr("name", this.input.name).html(this.input.label || this.input.name);

if (!options.skipResize) {
this.$el.css({
Expand Down

0 comments on commit 4812586

Please sign in to comment.