Postgres: Fix enabling the socks proxy (#80361)

postgres: fix enabling the socks proxy
This commit is contained in:
Gábor Farkas 2024-01-11 16:05:38 +01:00 committed by GitHub
parent 5c8e88d6ab
commit ced5b29951
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -403,7 +403,7 @@ export const PostgresConfigEditor = (props: DataSourcePluginOptionsEditorProps<P
<ConnectionLimits options={options} onOptionsChange={onOptionsChange} />
{config.secureSocksDSProxyEnabled && (
<SecureSocksProxySettings options={options} onOptionsChange={() => onOptionsChange(options)} />
<SecureSocksProxySettings options={options} onOptionsChange={onOptionsChange} />
)}
</ConfigSection>
</>