File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export class SeedChooseTransformREST extends TransformRESTElement {
33
33
34
34
35
35
render ( ) : HTMLTemplateResult {
36
- return html `<div class= "transformation-chooser" > ${ this . renderTransformationInfo ( ) } <div class= "form" > <for m @submit = "${ this . submit } " autocomplete = "off" method = "post" > ${ this . renderTransformationChooser ( ) } ${ this . renderError ( ) } ${ this . renderSourceForm ( ) } ${ this . renderSubmit ( ) } </ for m> </ div> </ div> <slot> </ slot> ` ;
36
+ return html `<div class= "transformation-chooser" > <div class= "form" > <for m @submit = "${ this . submit } " autocomplete = "off" method = "post" > ${ this . renderTransformationChooser ( ) } ${ this . renderError ( ) } ${ this . renderSourceForm ( ) } ${ this . renderSubmit ( ) } </ for m> </ div> </ div> <slot> </ slot> ` ;
37
37
}
38
38
39
39
renderSubmit ( ) : HTMLTemplateResult {
@@ -45,7 +45,7 @@ export class SeedChooseTransformREST extends TransformRESTElement {
45
45
}
46
46
47
47
renderTransformationChooser ( ) : HTMLTemplateResult {
48
- return html `<div class= "inputfield transformation" > <label for = "transformation" > Transformation ID <label> <select name= "transformation" id = "transformation" @change = "${ this . transformationSelected } " required > <option value= "" disabled selected hidden > Please choose ...</ option> ${ this . _transformations . map ( t => html `<option value= "${ t } " > ${ t } </ option> ` ) } ${ this . renderTransformationInfo ( ) } </ select> </ div> ` ;
48
+ return html `<div class= "inputfield transformation" > <label for = "transformation" > Transformation ID <label> <select name= "transformation" id = "transformation" @change = "${ this . transformationSelected } " required > <option value= "" disabled selected hidden > Please choose ...</ option> ${ this . _transformations . map ( t => html `<option value= "${ t } " > ${ t } </ option> ` ) } ${ this . renderTransformationInfo ( ) } </ select> ${ this . renderTransformationInfo ( ) } </ div> ` ;
49
49
}
50
50
51
51
renderError ( ) : HTMLTemplateResult {
You can’t perform that action at this time.
0 commit comments