(id: string)
| 1349 | } |
| 1350 | |
| 1351 | async function shutdownVm(id: string) { |
| 1352 | try { |
| 1353 | await vmmRpc.shutdownVm({ id }); |
| 1354 | loadVMList(); |
| 1355 | } catch (error) { |
| 1356 | recordError('Failed to shutdown VM', error); |
| 1357 | } |
| 1358 | } |
| 1359 | |
| 1360 | const dangerConfirmEnabled = () => !devMode.value; |
| 1361 |
nothing calls this directly
no test coverage detected