(targetPlatforms?: string[])
| 238 | } |
| 239 | |
| 240 | export async function openNodeSelectDialog(targetPlatforms?: string[]) { |
| 241 | const dialog = useMountComponent({ targetPlatforms }).load<InstanceType<typeof NodeSelectDialog>>( |
| 242 | NodeSelectDialog |
| 243 | ); |
| 244 | return dialog!.openDialog(); |
| 245 | } |
| 246 | |
| 247 | export async function openDockerVersionSelectDialog() { |
| 248 | const dialog = |
nothing calls this directly
no test coverage detected