Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #42 from jenkinsci/bugfix/JENKINS-41091
JENKINS-41091: git-parameter:0.7.1 breaks the multi-line parameters i…
  • Loading branch information
klimas7 committed Jan 20, 2017
2 parents 4af4453 + a4c768d commit 9463ef4
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -10,6 +10,9 @@ public class GitParameterRebuild extends RebuildParameterProvider {

@Override
public RebuildParameterPage getRebuildPage(ParameterValue parameterValue) {
return new RebuildParameterPage(GitParameterValue.class,"value.jelly");
if (parameterValue instanceof GitParameterValue) {
return new RebuildParameterPage(parameterValue.getClass(),"value.jelly");
}
return null;
}
}

0 comments on commit 9463ef4

Please sign in to comment.