We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bee0c9 commit ebc6d67Copy full SHA for ebc6d67
src/vs/platform/quickinput/browser/pickerQuickAccess.ts
@@ -139,7 +139,8 @@ export abstract class PickerQuickAccessProvider<T extends IPickerQuickAccessItem
139
return false;
140
}
141
142
- if (picksFilter.length > 0 && this.options?.noResultsPick) {
+ // We show the no results pick if we have no input to prevent completely empty pickers #172613
143
+ if ((picksFilter.length > 0 || picker.hideInput) && this.options?.noResultsPick) {
144
items = [this.options.noResultsPick];
145
146
0 commit comments