diff --git a/changelog/13152.txt b/changelog/13152.txt new file mode 100644 index 000000000..88c2f0e2e --- /dev/null +++ b/changelog/13152.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: Do not show verify connection value on database connection config page +``` \ No newline at end of file diff --git a/ui/app/utils/database-helpers.js b/ui/app/utils/database-helpers.js index 808a3024c..490d7f205 100644 --- a/ui/app/utils/database-helpers.js +++ b/ui/app/utils/database-helpers.js @@ -5,7 +5,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ fields: [ { attr: 'plugin_name' }, { attr: 'name' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'url', group: 'pluginConfig' }, { attr: 'username', group: 'pluginConfig', show: false }, @@ -26,7 +26,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ { attr: 'plugin_name' }, { attr: 'name' }, { attr: 'connection_url' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'username', group: 'pluginConfig', show: false }, { attr: 'password', group: 'pluginConfig', show: false }, @@ -44,7 +44,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ { attr: 'plugin_name' }, { attr: 'name' }, { attr: 'connection_url' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'username', group: 'pluginConfig', show: false }, { attr: 'password', group: 'pluginConfig', show: false }, @@ -61,7 +61,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ fields: [ { attr: 'plugin_name' }, { attr: 'name' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'connection_url', group: 'pluginConfig' }, { attr: 'username', group: 'pluginConfig', show: false }, @@ -81,7 +81,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ fields: [ { attr: 'plugin_name' }, { attr: 'name' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'connection_url', group: 'pluginConfig' }, { attr: 'username', group: 'pluginConfig', show: false }, @@ -101,7 +101,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ fields: [ { attr: 'plugin_name' }, { attr: 'name' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'connection_url', group: 'pluginConfig' }, { attr: 'username', group: 'pluginConfig', show: false }, @@ -121,7 +121,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ fields: [ { attr: 'plugin_name' }, { attr: 'name' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'connection_url', group: 'pluginConfig' }, { attr: 'username', group: 'pluginConfig', show: false }, @@ -141,7 +141,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ fields: [ { attr: 'plugin_name' }, { attr: 'name' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'connection_url', group: 'pluginConfig' }, { attr: 'username', group: 'pluginConfig', show: false }, @@ -159,7 +159,7 @@ export const AVAILABLE_PLUGIN_TYPES = [ fields: [ { attr: 'plugin_name' }, { attr: 'name' }, - { attr: 'verify_connection' }, + { attr: 'verify_connection', show: false }, { attr: 'password_policy' }, { attr: 'connection_url', group: 'pluginConfig' }, { attr: 'username', group: 'pluginConfig', show: false },