mirror of
https://github.com/jumpserver/lina.git
synced 2025-08-01 23:18:17 +00:00
fix: 修复创建远程应用密码框显示明文的问题
Closes https://github.com/jumpserver/trello/issues/133
This commit is contained in:
parent
066d81446c
commit
c6e0a17aaa
@ -18,7 +18,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = {
|
|||||||
label: i18n.t('applications.chrome_username')
|
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')
|
label: i18n.t('applications.chrome_password')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -36,7 +36,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = {
|
|||||||
label: i18n.t('applications.mysql_workbench_username')
|
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')
|
label: i18n.t('applications.mysql_workbench_password')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -50,7 +50,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = {
|
|||||||
label: i18n.t('applications.vmware_username')
|
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')
|
label: i18n.t('applications.vmware_password')
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@ -68,7 +68,7 @@ export const REMOTE_APP_TYPE_FIELDS_MAP = {
|
|||||||
label: i18n.t('applications.custom_username')
|
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')
|
label: i18n.t('applications.custom_password')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user