We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ee0328 commit 684818dCopy full SHA for 684818d
web/pgadmin/misc/workspaces/static/js/AdHocConnection.jsx
@@ -148,7 +148,8 @@ class AdHocConnectionSchema extends BaseUISchema {
148
optionsLoaded: (res) => self.flatServers = flattenSelectOptions(res),
149
optionsReloadBasis: `${self.flatServers.map((s) => s.connected).join('')}${state.connection_refresh}`,
150
}),
151
- depChange: (state)=>{
+ depChange: (state, source)=>{
152
+ if(source == 'connection_refresh') return;
153
/* Once the option is selected get the name */
154
/* Force sid to null, and set only if connected */
155
let selectedServer = _.find(
0 commit comments