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 919c971 commit 87d957eCopy full SHA for 87d957e
src/vs/workbench/contrib/comments/browser/commentsViewActions.ts
@@ -320,7 +320,7 @@ export class CommentsFilterActionViewItem extends BaseActionViewItem {
320
private updateBadge(): void {
321
if (this.filterBadge) {
322
const { total, filtered } = this.commentsView.getFilterStats();
323
- this.filterBadge.classList.toggle('hidden', total === filtered || total === 0);
+ this.filterBadge.classList.toggle('hidden', (total === filtered && !this.filterInputBox?.value) || total === 0);
324
this.filterBadge.textContent = localize('showing filtered comments', "Showing {0} of {1}", filtered, total);
325
this.adjustInputBox();
326
}
0 commit comments