We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89763c1 commit 512d53dCopy full SHA for 512d53d
src/lib/enhancers/github/githubEditComment.tsx
@@ -25,7 +25,8 @@ export class GitHubEditCommentEnhancer implements CommentEnhancer<GitHubEditComm
25
26
// Only enhance textareas that are for editing issue/PR body
27
const isIssueBodyEdit = textarea.closest('.react-issue-body')
28
- const isPRBodyEdit = textarea.id?.match(/^issue-\d+-body$/) || textarea.name === 'pull_request[body]'
+ const isPRBodyEdit =
29
+ textarea.id?.match(/^issue-\d+-body$/) || textarea.name === 'pull_request[body]'
30
31
if (!isIssueBodyEdit && !isPRBodyEdit) {
32
return null
0 commit comments