diff options
author | 2022-01-30 00:47:47 +0800 | |
---|---|---|
committer | 2022-01-30 00:47:47 +0800 | |
commit | ecb1769a7b37acd172917860e62356acd3569469 (patch) | |
tree | 6e0c1895854c5e806899080a5035dcda4c680355 /source/features/patch-diff-links.tsx | |
parent | 8ed65a601abd4d21e729c5810481f97995d354c6 (diff) | |
download | refined-github-ecb1769a7b37acd172917860e62356acd3569469.tar.gz refined-github-ecb1769a7b37acd172917860e62356acd3569469.tar.zst refined-github-ecb1769a7b37acd172917860e62356acd3569469.zip |
Prevent `patch-diff-links` from being AJAXed (#5339)
Diffstat (limited to 'source/features/patch-diff-links.tsx')
-rw-r--r-- | source/features/patch-diff-links.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/features/patch-diff-links.tsx b/source/features/patch-diff-links.tsx index 04867c0d..1c434a3c 100644 --- a/source/features/patch-diff-links.tsx +++ b/source/features/patch-diff-links.tsx @@ -12,10 +12,10 @@ function init(): void { } select('.commit-meta > :last-child')!.append( - <span className="sha-block patch-diff-links"> - <a href={`${commitUrl}.patch`} className="sha">patch</a> + <span className="sha-block"> + <a data-skip-pjax href={`${commitUrl}.patch`} className="sha">patch</a> { ' ' /* Workaround for: JSX eats whitespace between elements */ } - <a href={`${commitUrl}.diff`} className="sha">diff</a> + <a data-skip-pjax href={`${commitUrl}.diff`} className="sha">diff</a> </span>, ); } |