File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/buildinvoker Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,15 +88,15 @@ public boolean getIsArtifact(){
88
88
public String getAsHtml (){
89
89
StringBuffer s = new StringBuffer ();
90
90
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 + "\" />" );
92
92
s .append ("<tr><td class=\" hiddenParam\" >" + this .scope + "." + this .name + "</td><td class=\" hiddenParam\" >" + this .value + "</td></tr>" );
93
93
} else if (this .type .equals ("option" )){
94
94
if (this .description != null ){
95
95
s .append ("<tr><td>" + this .description + "</td>" );
96
96
} else {
97
97
s .append ("<tr><td>" + this .scope + "." + this .name + "</td>" );
98
98
}
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 + "\" " );
100
100
if (this .required != null && this .required )
101
101
s .append (" required " );
102
102
s .append (">" );
@@ -121,7 +121,7 @@ public String getArtifactStartAsHtml(){
121
121
} else {
122
122
s .append ("<tr><td>" + this .scope + "." + this .name + "</td>" );
123
123
}
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 + "\" " );
125
125
if (this .required != null && this .required )
126
126
s .append (" required " );
127
127
s .append (">" );
You can’t perform that action at this time.
0 commit comments