fix: 查看节点详情不包含节点key信息

This commit is contained in:
Michael Bai 2021-12-13 11:23:04 +08:00 committed by Jiangjie.Bai
parent 89c6936d56
commit 582b2582bf

View File

@ -357,8 +357,7 @@ export default {
this.nodeInfoDialogSetting.items = [
{ key: 'id', label: 'ID', value: res.id },
{ key: 'name', label: this.$t('assets.Name'), value: res.name },
{ key: 'fullName', label: this.$t('assets.FullName'), value: res.full_value },
{ key: 'key', label: this.$t('assets.Key'), value: res.key }
{ key: 'fullName', label: this.$t('assets.FullName'), value: res.full_value }
]
}).catch(error => {
this.$message.error(this.$t('common.getErrorMsg' + ' ' + error))