Can attach multiple ISOs to the same domain at the same time

This commit is contained in:
2023-12-08 17:12:19 +01:00
parent f05ae9fd52
commit 64eb90c0a4
4 changed files with 79 additions and 65 deletions

View File

@ -203,9 +203,9 @@ function VMDetailsInner(
<VMSelectIsoInput
editable={p.editable}
isoList={p.isoList}
value={p.vm.iso_file}
attachedISOs={p.vm.iso_files}
onChange={(v) => {
p.vm.iso_file = v;
p.vm.iso_files = v;
p.onChange?.();
}}
/>