MSSQL: Change encrypt default value to false (#69351)

change encrypt default value to false
This commit is contained in:
Soham
2023-06-02 17:01:43 +05:30
committed by GitHub
parent 21021502b5
commit 8165d9934b

View File

@@ -186,7 +186,7 @@ export const ConfigurationEditor = (props: DataSourcePluginOptionsEditorProps<Ms
>
<Select
options={encryptOptions}
value={jsonData.encrypt || MSSQLEncryptOptions.disable}
value={jsonData.encrypt || MSSQLEncryptOptions.false}
inputId="encrypt"
onChange={onEncryptChanged}
></Select>