compute: show ssh keypair name on creation

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2020-05-04 15:36:56 +05:30
parent 913a09276d
commit 97eaec2a8c
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ export default {
if (json.createsshkeypairresponse && json.createsshkeypairresponse.keypair && json.createsshkeypairresponse.keypair.privatekey) {
this.$notification.info({
message: this.$t('label.create.ssh.key.pair'),
description: (<span domPropsInnerHTML={'<pre>' + json.createsshkeypairresponse.keypair.privatekey + '</pre>'}></span>),
description: (<span domPropsInnerHTML={'<strong>' + values.name + '</strong><br/><pre>' + json.createsshkeypairresponse.keypair.privatekey + '</pre>'}></span>),
duration: 0
})
}