Skip to content

Commit

Permalink
CB-5640 fixes save creds checkbox state for SSL
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyteleshev committed Oct 9, 2024
1 parent ff9eb0d commit e25fc3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function useDatabaseCredentialsAuthDialog(
for (const id of this.networkHandlers) {
const handler = connection.networkHandlersConfig.find(handler => handler.id === id);

if (handler && (handler.userName || handler.authType !== NetworkHandlerAuthType.Password)) {
if (handler) {
this.config.networkHandlersConfig.push({
id: handler.id,
authType: handler.authType,
Expand Down

0 comments on commit e25fc3b

Please sign in to comment.