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 724a2fd commit 87eebd9Copy full SHA for 87eebd9
src/vs/platform/quickinput/browser/quickInputController.ts
@@ -546,7 +546,7 @@ export class QuickInputController extends Disposable {
546
input.ignoreFocusOut = !!options.ignoreFocusLost;
547
input.matchOnDescription = !!options.matchOnDescription;
548
input.matchOnDetail = !!options.matchOnDetail;
549
- if (options.sortByLabel) {
+ if (options.sortByLabel !== undefined) {
550
input.sortByLabel = options.sortByLabel;
551
}
552
input.matchOnLabel = (options.matchOnLabel === undefined) || options.matchOnLabel; // default to true
0 commit comments