Browse Source

Updates enrichment to match by url

main
Keith Daulton 1 year ago
parent
commit
7dcfedfc45
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/plus/webviews/focus/focusWebview.ts

+ 2
- 2
src/plus/webviews/focus/focusWebview.ts View File

@ -630,9 +630,9 @@ function findEnrichedItems(
let result; let result;
// TODO: filter by entity id, type, and gitRepositoryId // TODO: filter by entity id, type, and gitRepositoryId
if ((item as SearchedPullRequestWithRemote).pullRequest != null) { if ((item as SearchedPullRequestWithRemote).pullRequest != null) {
result = enrichedItems.filter(e => e.entityId === (item as SearchedPullRequestWithRemote).pullRequest.nodeId);
result = enrichedItems.filter(e => e.entityUrl === (item as SearchedPullRequestWithRemote).pullRequest.url);
} else { } else {
result = enrichedItems.filter(e => e.entityId === (item as SearchedIssueWithRank).issue.nodeId);
result = enrichedItems.filter(e => e.entityUrl === (item as SearchedIssueWithRank).issue.url);
} }
if (result.length === 0) return; if (result.length === 0) return;

Loading…
Cancel
Save