Skip to content

Commit

Permalink
Fix form label humanization
Browse files Browse the repository at this point in the history
  • Loading branch information
gashcrumb committed Apr 11, 2013
1 parent b8c490b commit 6a552e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hawtio-web/src/main/webapp/app/forms/js/helpers.ts
Expand Up @@ -145,7 +145,7 @@ module Forms {
}

export function getLabel(config, arg, id) {
return $('<label class="' + config.labelclass + '">' + humanizeValue(id.capitalize()) + ': </label>');
return $('<label class="' + config.labelclass + '">' + humanizeValue(id) + ': </label>');
}

export function getControlDiv(config) {
Expand Down

0 comments on commit 6a552e8

Please sign in to comment.