11import React , { FC } from "react" ;
22import { connect } from "react-redux" ;
3- import useMatomo from "../../utils/useMatomo" ;
3+
4+ import Highlight from "../../components/Highlight" ;
5+ import { AllPossiblePapersType , State } from "../../types" ;
46import { getPaperPDFClickHandler } from "../../utils/data" ;
57import { mapDispatchToListEntriesProps } from "../../utils/eventhandlers" ;
6- import Highlight from "../../components/Highlight " ;
8+ import useMatomo from "../../utils/useMatomo " ;
79import { isNonTextDocument } from "../Paper" ;
8- import { AllPossiblePapersType , State } from "../../types" ;
910
1011interface PaperButtonsProps {
1112 paper : AllPossiblePapersType ;
@@ -89,7 +90,7 @@ const PaperButtons: FC<PaperButtonsProps> = ({
8990 { hasCiteButton && (
9091 < button
9192 className = "paper_button"
92- title = "Cite this document "
93+ title = "Cite this resource "
9394 onClick = { handleCiteButtonClick }
9495 >
9596 < i className = "fa fa-quote-right" > </ i > Cite as
@@ -98,7 +99,7 @@ const PaperButtons: FC<PaperButtonsProps> = ({
9899 { showExportButton && (
99100 < button
100101 className = "paper_button"
101- title = "Export this document "
102+ title = "Export this resource "
102103 onClick = { handleExportButtonClick }
103104 >
104105 < i className = "fa fa-arrow-down" > </ i > Export
0 commit comments