Skip to content

Commit

Permalink
Fixed null appearing when required inputs are not satisfied
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Oct 22, 2015
1 parent 8104a56 commit 331fe44
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,10 @@ private Object promptInputComponent(InputComponent<?, ?> input, Object component
{
description = " (" + description + ")";
}
else
{
description = "";
}
String defaultValueDescription;
if (componentValue instanceof Collection)
{
Expand Down

0 comments on commit 331fe44

Please sign in to comment.