perf: translate

This commit is contained in:
feng
2023-02-13 16:07:08 +08:00
parent 48387ed576
commit e380a9d0b0
3 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ export default {
columnsShow: {
min: ['id', 'actions'],
default: [
'id', 'user', 'asset', 'system_user', 'remote_addr', 'protocol', 'login_from',
'id', 'user', 'asset', 'account', 'remote_addr', 'protocol', 'login_from',
'command_amount', 'date_start', 'duration', 'terminal_display', 'actions'
]
},

View File

@@ -40,7 +40,7 @@ export default {
value: object.apply_run_asset
},
{
key: this.$t('tickets.ApplyRunAccount'),
key: this.$t('assets.Account'),
value: object.rel_snapshot.apply_run_account
},
{

View File

@@ -33,15 +33,15 @@ export default {
return object.type === 'login_confirm' ? [] : [
{
key: this.$t('acl.apply_login_asset'),
value: object.rel_snapshot.apply_login_asset
value: object.apply_login_asset.name
},
{
key: this.$t('acl.apply_login_account'),
value: object.rel_snapshot.apply_login_account
value: object.apply_login_account
},
{
key: this.$t('acl.apply_login_user'),
value: object.rel_snapshot.apply_login_user
value: object.apply_login_user.name
}
]
}