()
| 550 | } |
| 551 | |
| 552 | async function refreshExpandedVMs() { |
| 553 | try { |
| 554 | for (const vmId of Array.from(expandedVMs.value.values()) as string[]) { |
| 555 | await loadVMDetails(vmId); |
| 556 | } |
| 557 | } catch (error) { |
| 558 | recordError('Error refreshing expanded VMs', error); |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | async function loadVMDetails(vmId: string) { |
| 563 | loadingVMDetails.value = true; |
no test coverage detected