feat: 添加SSH指纹字段显示

This commit is contained in:
Orange
2021-03-05 16:14:09 +08:00
committed by 老广
parent 0d31318fd5
commit 01aa92adc0
3 changed files with 6 additions and 0 deletions

View File

@@ -167,6 +167,7 @@
"Version": "版本",
"command_filter_list": "命令过滤器列表",
"date_joined": "创建日期",
"sshKeyFingerprint": "SSH 指纹",
"ip": "IP",
"sshkey": "sshkey",
"GroupsHelpMessage": "请输入用户组,多个用户组使用逗号分隔(需填写已存在的用户组)",

View File

@@ -167,6 +167,7 @@
"Version": "Version",
"command_filter_list": "Command filter list",
"date_joined": "Date joined",
"sshKeyFingerprint": "SSH fingerprint",
"ip": "IP",
"sshkey": "sshkey",
"GroupsHelpMessage": "Please fill in user groups, separated by commas if there are multiple user groups(Please fill in the existing user groups)",

View File

@@ -66,6 +66,10 @@ export default {
key: this.$t('assets.Username'),
value: this.object.username
},
{
key: this.$t('assets.sshKeyFingerprint'),
value: this.object.ssh_key_fingerprint
},
{
key: this.$t('assets.date_joined'),
value: toSafeLocalDateStr(this.object.date_created)