File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
testgen/ui/components/frontend/js/components Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ const ConnectionForm = (props, saveButton) => {
190190 getValue ( props . flavors ) . find ( f => f . value === connectionFlavor . rawVal ) ,
191191 ( formValue , isValid ) => {
192192 updatedConnection . val = { ...updatedConnection . val , ...formValue } ;
193- setFieldValidity ( 'mssql_form ' , isValid ) ;
193+ setFieldValidity ( 'postgresql_form ' , isValid ) ;
194194 } ,
195195 connection ,
196196 dynamicConnectionUrl ,
@@ -226,6 +226,7 @@ const ConnectionForm = (props, saveButton) => {
226226
227227 const authenticationForm = van . derive ( ( ) => {
228228 const selectedFlavorCode = connectionFlavor . val ;
229+ validityPerField . val = { connection_name : validityPerField . val . connection_name } ;
229230 const flavor = getValue ( props . flavors ) . find ( f => f . value === selectedFlavorCode ) ;
230231 return authenticationForms [ flavor . value ] ( ) ;
231232 } ) ;
You can’t perform that action at this time.
0 commit comments