File tree Expand file tree Collapse file tree
src/main/java/buildinvoker Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -88,15 +88,15 @@ public boolean getIsArtifact(){
8888 public String getAsHtml (){
8989 StringBuffer s = new StringBuffer ();
9090 if (this .type .equals ("hidden" )) {
91- s .append ("<input type=\" hidden\" name=\" invoke. " + this .scope + "." + this .name + "\" value=\" " + this .value + "\" />" );
91+ s .append ("<input type=\" hidden\" name=\" " + this .scope + "." + this .name + "\" value=\" " + this .value + "\" />" );
9292 s .append ("<tr><td class=\" hiddenParam\" >" + this .scope + "." + this .name + "</td><td class=\" hiddenParam\" >" + this .value + "</td></tr>" );
9393 } else if (this .type .equals ("option" )){
9494 if (this .description != null ){
9595 s .append ("<tr><td>" + this .description + "</td>" );
9696 } else {
9797 s .append ("<tr><td>" + this .scope + "." + this .name + "</td>" );
9898 }
99- s .append ("<td><select id=\" " + this .uniqueKey + this .name + "\" name=\" invoke. " + this .scope + "." + this .name + "\" " );
99+ s .append ("<td><select id=\" " + this .uniqueKey + this .name + "\" name=\" " + this .scope + "." + this .name + "\" " );
100100 if (this .required != null && this .required )
101101 s .append (" required " );
102102 s .append (">" );
@@ -121,7 +121,7 @@ public String getArtifactStartAsHtml(){
121121 } else {
122122 s .append ("<tr><td>" + this .scope + "." + this .name + "</td>" );
123123 }
124- s .append ("<td><select id=\" " + this .uniqueKey + this .name + "\" name=\" invoke. " + this .scope + "." + this .name + "\" " );
124+ s .append ("<td><select id=\" " + this .uniqueKey + this .name + "\" name=\" " + this .scope + "." + this .name + "\" " );
125125 if (this .required != null && this .required )
126126 s .append (" required " );
127127 s .append (">" );
You can’t perform that action at this time.
0 commit comments