diff --git a/src/views/applications/RemoteApp/const.js b/src/views/applications/RemoteApp/const.js index dd5d562e8..2240542a3 100644 --- a/src/views/applications/RemoteApp/const.js +++ b/src/views/applications/RemoteApp/const.js @@ -18,7 +18,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = { label: i18n.t('applications.chrome_username') }, { - id: 'chrome_password', el: {}, attrs: {}, type: 'input', prop: 'chrome_password', + id: 'chrome_password', el: { 'show-password': true }, attrs: {}, type: 'input', prop: 'chrome_password', label: i18n.t('applications.chrome_password') } ], @@ -36,7 +36,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = { label: i18n.t('applications.mysql_workbench_username') }, { - id: 'mysql_workbench_password', el: {}, attrs: {}, type: 'input', prop: 'mysql_workbench_password', + id: 'mysql_workbench_password', el: { 'show-password': true }, attrs: {}, type: 'input', prop: 'mysql_workbench_password', label: i18n.t('applications.mysql_workbench_password') } ], @@ -50,7 +50,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = { label: i18n.t('applications.vmware_username') }, { - id: 'vmware_password', el: {}, attrs: {}, type: 'input', prop: 'vmware_password', + id: 'vmware_password', el: { 'show-password': true }, attrs: {}, type: 'input', prop: 'vmware_password', label: i18n.t('applications.vmware_password') } ], @@ -68,7 +68,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = { label: i18n.t('applications.custom_username') }, { - id: 'custom_password', el: {}, attrs: {}, type: 'input', prop: 'custom_password', + id: 'custom_password', el: { 'show-password': true }, attrs: {}, type: 'input', prop: 'custom_password', label: i18n.t('applications.custom_password') } ]