Update quick pick placeholders and/or remove titles (#165267)

This commit is contained in:
David Dossett
2022-11-02 15:43:18 -07:00
committed by GitHub
parent 87bf03770e
commit 2da60fd58b
9 changed files with 12 additions and 14 deletions

View File

@@ -2007,8 +2007,8 @@ export class CommandCenter {
const quickpick = window.createQuickPick();
quickpick.items = picks;
quickpick.placeholder = opts?.detached
? l10n.t('Select a ref to checkout in detached mode')
: l10n.t('Select a ref to checkout');
? l10n.t('Select a branch or tag to checkout in detached mode')
: l10n.t('Select a branch or tag to checkout');
quickpick.show();