(category: string, label: string)
| 99 | * @param label The label of the item to set as default |
| 100 | */ |
| 101 | export function setQuickPickDefault(category: string, label: string): void { |
| 102 | if (quickPickItems[category]) { |
| 103 | const targetOption = quickPickItems[category].filter( |
| 104 | (x) => x.label === label, |
| 105 | )[0]; |
| 106 | if (targetOption) { |
| 107 | targetOption.picked = true; |
| 108 | } |
| 109 | } |
| 110 | } |
| 111 | } |
nothing calls this directly
no outgoing calls
no test coverage detected