File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 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 {
3333
3434
3535 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> ` ;
3737 }
3838
3939 renderSubmit ( ) : HTMLTemplateResult {
@@ -45,7 +45,7 @@ export class SeedChooseTransformREST extends TransformRESTElement {
4545 }
4646
4747 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> ` ;
4949 }
5050
5151 renderError ( ) : HTMLTemplateResult {
You can’t perform that action at this time.
0 commit comments