From c6e0a17aaa40f0d56c05353e6617fbf220ef2bd3 Mon Sep 17 00:00:00 2001 From: OrangeM21 Date: Tue, 28 Jul 2020 01:54:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E8=BF=9C=E7=A8=8B=E5=BA=94=E7=94=A8=E5=AF=86=E7=A0=81=E6=A1=86?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E6=98=8E=E6=96=87=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes https://github.com/jumpserver/trello/issues/133 --- src/views/applications/RemoteApp/const.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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') } ]