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
  • Loading branch information
fbeauchamp committed Jan 18, 2023
1 parent 3c7d316 commit 13a178e
Show file tree
Hide file tree
Showing 2 changed files with 3 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] how bootable status for vm running pv_in_pvh virtualisation mode [#6629](https://github.com/vatesfr/xen-orchestra/issues/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-->
2 changes: 1 addition & 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,7 @@ 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 13a178e

Please sign in to comment.