diff --git a/ui/details.ui b/ui/details.ui index 2e7b253b2..efc2748f5 100644 --- a/ui/details.ui +++ b/ui/details.ui @@ -5445,6 +5445,30 @@ 1 + + + True + False + end + Version: + + + 0 + 2 + + + + + True + False + start + tpm-version + + + 1 + 2 + + diff --git a/virtManager/details.py b/virtManager/details.py index 0949d3156..cd45d67d1 100644 --- a/virtManager/details.py +++ b/virtManager/details.py @@ -249,6 +249,8 @@ def _label_for_device(dev): label = _("TPM") if dev.device_path: label += (" %s" % dev.device_path) + else: + label += (" v%s" % dev.version) return label devmap = { @@ -2781,6 +2783,7 @@ class vmmDetails(vmmGObjectUI): # Device type specific properties, only show if apply to the cur dev show_ui("device_path") + show_ui("version") def refresh_panic_page(self): dev = self.get_hw_selection(HW_LIST_COL_DEVICE)