Skip to content

Commit

Permalink
NAS-133236: Add VM support for instances
Browse files Browse the repository at this point in the history
  • Loading branch information
denysbutenko committed Jan 6, 2025
1 parent 6be6c74 commit a6c1400
Showing 1 changed file with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -232,16 +232,19 @@
}
</ix-form-section>

<ix-form-section
[label]="'USB Devices' | translate"
[help]="'USB Devices' | translate"
>
<ix-checkbox-list
formControlName="usb_devices"
@let usbDevices = usbDevices$ | async;
@if (usbDevices.length > 0) {
<ix-form-section
[label]="'USB Devices' | translate"
[options]="usbDevices$"
></ix-checkbox-list>
</ix-form-section>
[help]="'USB Devices' | translate"
>
<ix-checkbox-list
formControlName="usb_devices"
[label]="'USB Devices' | translate"
[options]="usbDevices$"
></ix-checkbox-list>
</ix-form-section>
}

@let gpuDevices = gpuDevices$ | async;
@if (gpuDevices.length > 0) {
Expand Down

0 comments on commit a6c1400

Please sign in to comment.