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

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


The following commit(s) were added to refs/heads/4.18 by this push:
     new cfee78e07c1 ui: Added UEFI support flag in host details view (#7361)
cfee78e07c1 is described below

commit cfee78e07c1c5631b11efcd5d0e6bdf0e14862fd
Author: Harikrishna <[email protected]>
AuthorDate: Fri Mar 24 12:05:45 2023 +0530

    ui: Added UEFI support flag in host details view (#7361)
---
 ui/public/locales/en.json       | 1 +
 ui/src/views/infra/HostInfo.vue | 9 ++++++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/ui/public/locales/en.json b/ui/public/locales/en.json
index 17532b36a47..a55455823a7 100644
--- a/ui/public/locales/en.json
+++ b/ui/public/locales/en.json
@@ -1794,6 +1794,7 @@
 "label.srx": "SRX",
 "label.srx.firewall": "Juniper SRX firewall",
 "label.ssh.key.pairs": "SSH key pairs",
+"label.uefi.supported": "UEFI supported",
 "label.userdataid": "Userdata ID",
 "label.userdataname": "Userdata name",
 "label.userdatadetails": "Userdata details",
diff --git a/ui/src/views/infra/HostInfo.vue b/ui/src/views/infra/HostInfo.vue
index a74407be7df..1d0b47eba95 100644
--- a/ui/src/views/infra/HostInfo.vue
+++ b/ui/src/views/infra/HostInfo.vue
@@ -104,7 +104,14 @@
           </div>
         </div>
       </a-list-item>
-
+      <a-list-item>
+        <div>
+          <strong>{{ $t('label.uefi.supported') }}</strong>
+          <div>
+            {{ host.ueficapability }}
+          </div>
+        </div>
+      </a-list-item>
     </a-list>
   </a-spin>
 </template>

Reply via email to