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 a930913 commit 6885b30Copy full SHA for 6885b30
src/plus/launchpad/launchpad.ts
@@ -568,10 +568,13 @@ export class LaunchpadCommand extends QuickCommand<State> {
568
item.alwaysShow = false;
569
updated = true;
570
}
571
+ if ('item' in item && item.item?.isSearched) {
572
+ updated = true;
573
+ }
574
575
if (updated) {
576
// Force quickpick to update by changing the items object:
- quickpick.items = [...quickpick.items];
577
+ quickpick.items = [...quickpick.items.filter(i => !('item' in i && i.item?.isSearched))];
578
579
580
if (!value?.length || activeLaunchpadItems.length) {
0 commit comments