fix: 修复资产详情查看账号密码报错问题

This commit is contained in:
“huailei000”
2023-02-02 10:39:00 +08:00
committed by huailei
parent 13089e80f8
commit 7d46392174

View File

@@ -101,7 +101,7 @@ export default {
getAuthInfo() {
this.$axios.get(this.url, { disableFlashErrorMsg: true }).then(resp => {
this.secretInfo = resp
this.sshKeyFingerprint = resp['specific']['ssh_key_fingerprint']
this.sshKeyFingerprint = resp?.spec_info
this.showSecret = true
})
},