(title: string, text: string, subTitle?: string)
| 192 | } |
| 193 | |
| 194 | export async function openLoadingDialog(title: string, text: string, subTitle?: string) { |
| 195 | const component = useMountComponent({ |
| 196 | title, |
| 197 | text, |
| 198 | subTitle |
| 199 | }).load<InstanceType<typeof TaskLoadingDialog>>(TaskLoadingDialog); |
| 200 | return component; |
| 201 | } |
| 202 | |
| 203 | export async function openInstanceTagsEditor( |
| 204 | instanceId: string, |
no test coverage detected