(data: DockerEnvItem[] = [])
| 125 | } |
| 126 | |
| 127 | export async function useDockerEnvEditDialog(data: DockerEnvItem[] = []) { |
| 128 | return ( |
| 129 | (await useMountComponent({ |
| 130 | data, |
| 131 | title: t("TXT_CODE_90a9d317"), |
| 132 | columns: [ |
| 133 | { |
| 134 | align: "center", |
| 135 | dataIndex: "label", |
| 136 | title: t("TXT_CODE_a42984e") |
| 137 | }, |
| 138 | { |
| 139 | align: "center", |
| 140 | dataIndex: "value", |
| 141 | title: t("TXT_CODE_115e8a25") |
| 142 | } |
| 143 | ] as AntColumnsType[], |
| 144 | textarea: true |
| 145 | }).mount<DockerEnvItem[]>(KvOptionsDialogVue)) || [] |
| 146 | ); |
| 147 | } |
| 148 | |
| 149 | export async function useDockerLabelEditDialog(data: DockerLabelItem[] = []) { |
| 150 | return ( |
nothing calls this directly
no test coverage detected