From 7f2b31f49eb6241ae90187c6baf84fc2dda9d38d Mon Sep 17 00:00:00 2001 From: navaneeth Date: Sat, 3 Jul 2021 18:31:31 +0530 Subject: [PATCH] Fix mongodb bug --- frontend/src/Editor/DataSourceManager/DataSourceTypes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Editor/DataSourceManager/DataSourceTypes.js b/frontend/src/Editor/DataSourceManager/DataSourceTypes.js index a2c3509c21..aef00b9dcc 100644 --- a/frontend/src/Editor/DataSourceManager/DataSourceTypes.js +++ b/frontend/src/Editor/DataSourceManager/DataSourceTypes.js @@ -59,7 +59,7 @@ export const dataBaseSources = [ host: { type: 'string' }, port: { type: 'string' }, username: { type: 'string' }, - password: { type: 'string' }, + password: { type: 'string', encrypted: true }, connection_type: { type: 'options'}, connection_string: { type: 'string', encrypted: true } }