(data: PortConfigItem[] = [])
| 93 | } |
| 94 | |
| 95 | export async function usePortEditDialog(data: PortConfigItem[] = []) { |
| 96 | return ( |
| 97 | (await useMountComponent({ |
| 98 | data, |
| 99 | textarea: false |
| 100 | }).mount<PortConfigItem[]>(DockerPortDialog)) || [] |
| 101 | ); |
| 102 | } |
| 103 | |
| 104 | export async function useVolumeEditDialog(data: DockerConfigItem[] = []) { |
| 105 | return ( |
nothing calls this directly
no test coverage detected