(problem: IProblem)
| 277 | } |
| 278 | |
| 279 | async function resolveCompanyForProblem(problem: IProblem): Promise<string | undefined> { |
| 280 | if (problem.companies.length === 1) { |
| 281 | return problem.companies[0]; |
| 282 | } |
| 283 | return await vscode.window.showQuickPick(problem.companies, { |
| 284 | matchOnDetail: true, |
| 285 | placeHolder: "Multiple tags available, please select one", |
| 286 | ignoreFocusOut: true, |
| 287 | }); |
| 288 | } |
no outgoing calls
no test coverage detected