diff options
Diffstat (limited to 'source/features/patch-diff-links.tsx')
-rw-r--r-- | source/features/patch-diff-links.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/features/patch-diff-links.tsx b/source/features/patch-diff-links.tsx index d705899f..337d034a 100644 --- a/source/features/patch-diff-links.tsx +++ b/source/features/patch-diff-links.tsx @@ -17,16 +17,16 @@ function init(): void { <a href={`${commitUrl}.patch`} className="sha">patch</a> { ' ' /* Workaround for: JSX eats whitespace between elements */ } <a href={`${commitUrl}.diff`} className="sha">diff</a> - </span> + </span>, ); } void features.add(__filebasename, { include: [ - pageDetect.isCommit + pageDetect.isCommit, ], exclude: [ - pageDetect.isPRCommit404 + pageDetect.isPRCommit404, ], - init + init, }); |