We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c29c5c commit 539a494Copy full SHA for 539a494
extensions/ql-vscode/src/remote-queries/remote-queries-manager.ts
@@ -193,7 +193,9 @@ export class RemoteQueriesManager extends DisposableObject {
193
194
public async copyRemoteQueryRepoListToClipboard(queryId: string) {
195
const queryResult = await this.getRemoteQueryResult(queryId);
196
- const repos = queryResult.analysisSummaries.map(a => a.nwo);
+ const repos = queryResult.analysisSummaries
197
+ .filter(a => a.resultCount > 0)
198
+ .map(a => a.nwo);
199
200
if (repos.length > 0) {
201
const text = [
0 commit comments