This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git


The following commit(s) were added to refs/heads/master by this push:
     new 6f996a5  hostinfo: Fixing host hypervisor version (#870)
6f996a5 is described below

commit 6f996a546cf6f96ad9a9cb9ad20095a5ba49f812
Author: davidjumani <[email protected]>
AuthorDate: Mon Nov 23 16:21:47 2020 +0530

    hostinfo: Fixing host hypervisor version (#870)
---
 src/views/infra/HostInfo.vue | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/views/infra/HostInfo.vue b/src/views/infra/HostInfo.vue
index 627f6ff..a28a808 100644
--- a/src/views/infra/HostInfo.vue
+++ b/src/views/infra/HostInfo.vue
@@ -23,7 +23,10 @@
           <strong>{{ $t('label.hypervisorversion') }}</strong>
           <div>
             {{ host.hypervisor }}
-            <span v-if="host.details">
+            <span v-if="host.hypervisorversion">
+              {{ host.hypervisorversion }}
+            </span>
+            <span v-else-if="host.details">
               {{ host.details['Host.OS'] + ' ' + 
host.details['Host.OS.Version'] }}
             </span>
             <span v-else>

Reply via email to