Allow extension authors to set the title of a QuickPick/InputBox in Options (#119144)

* plumb title through

* add title to BaseTransferQuickInput
This commit is contained in:
Tyler James Leonhardt
2021-03-18 13:06:06 -07:00
committed by GitHub
parent 31a9b8f815
commit 89d8eed14f
6 changed files with 41 additions and 5 deletions

View File

@@ -89,6 +89,7 @@ export class MainThreadQuickOpen implements MainThreadQuickOpenShape {
const inputOptions: IInputOptions = Object.create(null);
if (options) {
inputOptions.title = options.title;
inputOptions.password = options.password;
inputOptions.placeHolder = options.placeHolder;
inputOptions.valueSelection = options.valueSelection;