You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
response: (result)=>{returnresult.virtualmachine&&result.virtualmachine.password ? `Password of the VM is ${result.virtualmachine.password}` : null}
320
+
response: (result)=>{returnresult.virtualmachine&&result.virtualmachine.password ? `The password of VM <b>${result.virtualmachine.displayname}</b> is <b>${result.virtualmachine.password}</b>` : null}
Copy file name to clipboardExpand all lines: ui/src/views/compute/StartVirtualMachine.vue
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -255,7 +255,7 @@ export default {
255
255
successMethod: () => {
256
256
this.parentFetchData()
257
257
},
258
-
response: (result) => { returnresult.virtualmachine&&result.virtualmachine.password?`Password of the VM is ${result.virtualmachine.password}`:null }
258
+
response: (result) => { returnresult.virtualmachine&&result.virtualmachine.password?`The password of VM <b>${result.virtualmachine.displayname}</b> is <b>${result.virtualmachine.password}</b>`:null }
0 commit comments