Skip to content

Commit

Permalink
add Vm react component
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-m-dev committed Nov 26, 2024
1 parent e263948 commit c659546
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/xo-web/src/common/xo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,9 @@ export const toggleMaintenanceMode = async host => {
vms: (
<ul>
{vms.map(vm => (
<li key={vm.name_label}>{vm.name_label}</li>
<li key={vm.id}>
<Vm id={vm.id} />
</li>
))}
</ul>
),
Expand Down

0 comments on commit c659546

Please sign in to comment.