Skip to content

Commit

Permalink
fix: 复制文献问题
Browse files Browse the repository at this point in the history
  • Loading branch information
14790897 committed Feb 23, 2024
1 parent 9b835bb commit a38b9ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/ReferenceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,9 @@ function ReferenceList({ editor, lng }: ReferenceListProps) {
<button
className="bg-gray-300 hover:bg-gray-400 text-black font-bold py-2 px-4 rounded "
type="button"
onClick={() => copyToClipboard(getAllFullReferences(references))}
onClick={() =>
copyToClipboard(getAllFullReferences(references, citationStyle))
}
>
{t("复制所有引用")}
</button>
Expand Down

0 comments on commit a38b9ce

Please sign in to comment.