Skip to content

Commit

Permalink
Remove ellipse from "No issues found." (#4034)
Browse files Browse the repository at this point in the history
  • Loading branch information
breyed authored Jan 11, 2025
1 parent 3e6de0f commit 312a7a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/client/src/issueViewer/issuesViewerByFile.mts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ class IssuesTreeDataProvider implements TreeDataProvider<IssueTreeItemBase> {
requestSuggestions: (item) => this.issueTracker?.getSuggestionsForIssue(item) || Promise.resolve([]),
};
this.children = collectIssuesByFile(context);
this.updateMessage(this.children.length ? undefined : 'No issues found...');
this.updateMessage(this.children.length ? undefined : 'No issues found.');
setTimeout(() => this.options.onDidUpdate(), 10);
return this.children;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/issueViewer/unknownWordsViewer.mts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class UnknownWordsTreeDataProvider implements TreeDataProvider<IssueTreeItemBase
};
const issues = collectIssues(context);
this.children = issues;
this.updateMessage(issues.length ? undefined : 'No issues found...');
this.updateMessage(issues.length ? undefined : 'No issues found.');
return issues;
}

Expand Down

0 comments on commit 312a7a1

Please sign in to comment.