fix: 复制文献问题

This commit is contained in:
liuweiqing 2024-02-23 19:52:07 +08:00
parent 9b835bbadd
commit a38b9cee52

View File

@ -277,7 +277,9 @@ function ReferenceList({ editor, lng }: ReferenceListProps) {
<button <button
className="bg-gray-300 hover:bg-gray-400 text-black font-bold py-2 px-4 rounded " className="bg-gray-300 hover:bg-gray-400 text-black font-bold py-2 px-4 rounded "
type="button" type="button"
onClick={() => copyToClipboard(getAllFullReferences(references))} onClick={() =>
copyToClipboard(getAllFullReferences(references, citationStyle))
}
> >
{t("复制所有引用")} {t("复制所有引用")}
</button> </button>