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 b33b1833..e0dce047 100644 --- a/source/features/patch-diff-links.tsx +++ b/source/features/patch-diff-links.tsx @@ -14,10 +14,10 @@ function init(): void { } select('.commit-meta > :last-child')!.append( - <span className="sha-block"> - <a data-skip-pjax href={`${commitUrl}.patch`} className="sha">patch</a> - { ' ' /* Workaround for: JSX eats whitespace between elements */ } - <a data-skip-pjax href={`${commitUrl}.diff`} className="sha">diff</a> + <span className="sha-block" data-turbo="false"> + <a href={`${commitUrl}.patch`} className="sha">patch</a> + {' '} + <a href={`${commitUrl}.diff`} className="sha">diff</a> </span>, ); } |