Hide verify-connection attribute on connection config show page (#13152)
* Hide verify-connection attribute on connection config show page * Add changelog
This commit is contained in:
parent
5864e0a523
commit
c105c58bce
|
@ -0,0 +1,3 @@
|
|||
```release-note:bug
|
||||
ui: Do not show verify connection value on database connection config page
|
||||
```
|
|
@ -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 },
|
||||
|
|
Loading…
Reference in New Issue