File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class GitHubPRNewCommentEnhancer implements CommentEnhancer<GitHubPRNewCo
1717 }
1818
1919 tryToEnhance ( textarea : HTMLTextAreaElement ) : GitHubPRNewCommentSpot | null {
20- if ( textarea . id == 'feedback' ) {
20+ if ( textarea . id === 'feedback' ) {
2121 return null
2222 }
2323 if ( document . querySelector ( 'meta[name="hostname"]' ) ?. getAttribute ( 'content' ) !== 'github.com' ) {
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ function enhancements(document: Document) {
1717 for : forValue ,
1818 spot : enhanced . spot ,
1919 title : enhanced . enhancer . tableTitle ( enhanced . spot ) ,
20- upperDecoration : enhanced . enhancer . tableUpperDecoration ( enhanced . spot )
20+ upperDecoration : enhanced . enhancer . tableUpperDecoration ( enhanced . spot ) ,
2121 } )
2222 } else {
2323 spotsFound . push ( {
2424 for : forValue ,
25- spot : 'NO_SPOT'
25+ spot : 'NO_SPOT' ,
2626 } )
2727 }
2828 }
You can’t perform that action at this time.
0 commit comments