Skip to content

Commit

Permalink
fix: fix displayed number instead of id in slack home
Browse files Browse the repository at this point in the history
  • Loading branch information
christophehurpeau committed Mar 15, 2023
1 parent 61c41ad commit 94a732e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slack/home.ts
Expand Up @@ -163,7 +163,7 @@ export const createSlackHomeWorker = (mongoStores: MongoStores) => {
createDividerBlock(),
...results.flatMap((pr) => {
const repoName = pr.repo.name;
const prFullName = `${repoName}#${pr.pr.id}`;
const prFullName = `${repoName}#${pr.pr.number}`;
const prUrl = buildPullRequestUrl(pr);

return [
Expand Down

0 comments on commit 94a732e

Please sign in to comment.