Skip to content

Commit

Permalink
Fixes <param argument="--set" /> not working when help="" is not set
Browse files Browse the repository at this point in the history
  • Loading branch information
yhoogstrate committed Feb 2, 2016
1 parent 3deb005 commit 8cee212
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/galaxy/scripts/mvc/form/form-input.js
Expand Up @@ -109,9 +109,9 @@ define([], function() {
tmp += '<div class="ui-form-info">';
if (options.help) {
tmp += options.help;
if (options.argument && options.help.indexOf('(' + options.argument + ')') == -1) {
tmp += ' (' + options.argument + ')';
}
}
if (options.argument && options.help.indexOf('(' + options.argument + ')') == -1) {
tmp += ' (' + options.argument + ')';
}
tmp += '</div>' +
'<div class="ui-form-backdrop"/>' +
Expand Down

0 comments on commit 8cee212

Please sign in to comment.