Skip to content

Commit

Permalink
fix(xo-web): show bootable status for VM running pv_in_pvh virtualisa…
Browse files Browse the repository at this point in the history
…tion mode (#6629)

Fix #6432
  • Loading branch information
fbeauchamp authored Jan 18, 2023
1 parent 3c7d316 commit 5f0ea4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- [REST API] Fix 5 minutes timeouts on VDI/VM uploads [#6568](https://github.com/vatesfr/xen-orchestra/issues/6568)
- [Backup] Fix NBD configuration (PR [#6597](https://github.com/vatesfr/xen-orchestra/pull/6597))
- [NBD Backups] Fix transfer size [#6599](https://github.com/vatesfr/xen-orchestra/issues/6599)
- [Disk] Show bootable status for vm running in `pv_in_pvh` virtualisation mode [#6432](https://github.com/vatesfr/xen-orchestra/issues/6432) (PR [#6629](https://github.com/vatesfr/xen-orchestra/pull/6629))

### Packages to release

Expand All @@ -41,5 +42,6 @@
- vhd-lib patch
- xo-server minor
- xo-server-perf-alert patch
- xo-web patch

<!--packages-end-->
4 changes: 3 additions & 1 deletion packages/xo-web/src/xo-app/vm/tab-disks.js
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,9 @@ export default class TabDisks extends Component {
<SortedTable
actions={this.actions}
collection={this._getVbds()}
columns={vm.virtualizationMode === 'pv' ? COLUMNS_VM_PV : COLUMNS}
columns={
vm.virtualizationMode === 'pv' || vm.virtualizationMode === 'pv_in_pvh' ? COLUMNS_VM_PV : COLUMNS
}
data-resourceSet={resolvedResourceSet}
data-vm={vm}
individualActions={INDIVIDUAL_ACTIONS}
Expand Down

0 comments on commit 5f0ea4d

Please sign in to comment.