Skip to content

Commit

Permalink
Include title in search response
Browse files Browse the repository at this point in the history
  • Loading branch information
bo0tzz authored Nov 5, 2023
1 parent 193f90c commit 80b39d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/slashes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export class Commands {
const name = `${item.pull_request ? '[PR]' : '[Issue]'} (${item.number}) ${item.title}`;
return {
name: name.length > 100 ? name.substring(0, 97) + '...' : name,
value: `${item.pull_request ? '[PR]' : '[Issue]'} ([#${item.number}](${item.html_url}))`,
value: `${item.pull_request ? '[PR]' : '[Issue]'} ${item.title} ([#${item.number}](${item.html_url}))`,
};
}),
);
Expand Down

0 comments on commit 80b39d5

Please sign in to comment.