File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -1019,7 +1019,6 @@ export class KdbDataSourceView extends LitElement {
10191019 ${ this . renderUDAOptions ( ) }
10201020 </ sl-select >
10211021 ${ this . renderUDADetails ( ) } ${ this . renderUDAParams ( ) }
1022- ${ this . userSelectedUDA ? this . renderUDAAddParamButton ( ) : null }
10231022 </ div >
10241023 ` ;
10251024 }
@@ -1080,11 +1079,15 @@ export class KdbDataSourceView extends LitElement {
10801079 const visibleParams = this . renderVisibleUDAParams ( ) ;
10811080 const noParams = this . renderUDANoParams ( ) ;
10821081 const invalidParams = this . renderUDAInvalidParams ( ) ;
1082+ const addParamsBtn = this . renderUDAAddParamButton ( ) ;
10831083
10841084 if ( invalidParams ) {
10851085 params . push ( invalidParams ) ;
10861086 } else {
1087- params . push ( ...( visibleParams . length ? visibleParams : [ noParams ] ) ) ;
1087+ params . push (
1088+ ...( visibleParams . length ? visibleParams : [ noParams ] ) ,
1089+ ...[ addParamsBtn ] ,
1090+ ) ;
10881091 }
10891092
10901093 return params ;
You can’t perform that action at this time.
0 commit comments