There was an error while loading. Please reload this page.
1 parent a40f81a commit a417a68Copy full SHA for a417a68
src/lib/enhancers/github/GitHubEditEnhancer.tsx
@@ -46,9 +46,8 @@ export class GitHubEditEnhancer implements CommentEnhancer<GitHubEditSpot> {
46
"[data-wrapper-timeline-id]"
47
)
48
const isPRBodyEdit =
49
- textarea.name === "pull_request[body]" ||
50
- textarea.name === "issue_comment[body]"
51
- // ^this is the root pr comment ^this is the other pr comments (surprising!)
+ textarea.name === "pull_request[body]" || // this is the root pr comment
+ textarea.name === "issue_comment[body]" // this is the other pr comments (surprising!)
52
53
if (!isIssueBodyRootEdit && !isIssueBodyCommentEdit && !isPRBodyEdit) {
54
return null
0 commit comments