diff --git a/package-lock.json b/package-lock.json index 4d5ff30d..6eb15cf2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -75,7 +75,6 @@ "react-swipeable-views": "^0.13.9", "react-syntax-highlighter": "^10.2.0", "react-toastify": "^4.5.2", - "react-use-googlelogin": "^0.12.5", "react-uuid": "^1.0.2", "react-vis": "^1.11.7", "react-zoom-pan-pinch": "^1.4.5", @@ -28250,14 +28249,6 @@ "typescript": "^3.5.2" } }, - "node_modules/react-use-googlelogin": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/react-use-googlelogin/-/react-use-googlelogin-0.12.5.tgz", - "integrity": "sha512-30TF9rJyhDx7mO5T+BVChaKxd4xztLMMRCkG2/gdk8o9+JMfipSvBM26OJCDnG7Ug3KxBSNR+9uKgtQ4FCI0fg==", - "peerDependencies": { - "react": ">=16.8" - } - }, "node_modules/react-uuid": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/react-uuid/-/react-uuid-1.0.2.tgz", @@ -56113,12 +56104,6 @@ "integrity": "sha512-XL+Rup9Hosxx3Ap9xpyQMbVwuUa4BSqiOjfBb2zDuGs4uv2FesFV+m8Z/huRx2BNptMd9ARPqFuSNA62zhCozg==", "requires": {} }, - "react-use-googlelogin": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/react-use-googlelogin/-/react-use-googlelogin-0.12.5.tgz", - "integrity": "sha512-30TF9rJyhDx7mO5T+BVChaKxd4xztLMMRCkG2/gdk8o9+JMfipSvBM26OJCDnG7Ug3KxBSNR+9uKgtQ4FCI0fg==", - "requires": {} - }, "react-uuid": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/react-uuid/-/react-uuid-1.0.2.tgz", diff --git a/src/bento/caseDetailData.js b/src/bento/caseDetailData.js index 38bf3b40..1fb75745 100644 --- a/src/bento/caseDetailData.js +++ b/src/bento/caseDetailData.js @@ -242,8 +242,8 @@ export const tabContainers = [ }, }, { - dataField: 'nih_percentile', - header: 'NIH Percentile', + dataField: 'publish_date', + header: 'Publish Date', sort: 'asc', display: true, headerStyles: { @@ -573,7 +573,6 @@ query publicationOverViewByProject( publish_date, citation_count, relative_citation_ratio, - nih_percentile, doi, } } diff --git a/src/bento/dashboardTabData.js b/src/bento/dashboardTabData.js index 8bdb3aa2..3c42f30a 100644 --- a/src/bento/dashboardTabData.js +++ b/src/bento/dashboardTabData.js @@ -263,8 +263,8 @@ export const tabContainers = [ }, }, { - dataField: 'nih_percentile', - header: 'NIH Percentile', + dataField: 'publish_date', + header: 'Publish Date', sort: 'asc', display: true, headerStyles: { @@ -909,7 +909,6 @@ query publicationOverView( publish_date, citation_count, relative_citation_ratio, - nih_percentile, doi, queried_project_ids } diff --git a/src/bento/tableDownloadCSV.js b/src/bento/tableDownloadCSV.js index f5021a0c..d8eadb24 100644 --- a/src/bento/tableDownloadCSV.js +++ b/src/bento/tableDownloadCSV.js @@ -175,7 +175,6 @@ query publicationOverView( publish_date, citation_count, relative_citation_ratio, - nih_percentile, doi, queried_project_ids } @@ -190,7 +189,7 @@ export const customPublicationsTabDownloadCSV = { 'authors', 'citation_count', 'relative_citation_ratio', - 'nih_percentile', + 'publish_date', ], header: [ 'PubMed ID', @@ -199,7 +198,7 @@ export const customPublicationsTabDownloadCSV = { 'Authors', 'Citation Count', 'Relative Citation Ratio', - 'NIH Percentile', + 'Publish Date', ], query: GET_PUBLICATIONS_TAB, apiVariable: 'publicationOverView', @@ -389,7 +388,6 @@ query publicationOverViewByProject( publish_date, citation_count, relative_citation_ratio, - nih_percentile, doi, } } @@ -402,7 +400,7 @@ export const customCaseDetailPublicationsTabDownloadCSV = { 'authors', 'citation_count', 'relative_citation_ratio', - 'nih_percentile', + 'publish_date', ], header: [ 'PubMed ID', @@ -410,7 +408,7 @@ export const customCaseDetailPublicationsTabDownloadCSV = { 'Authors', 'Citation Count', 'Relative Citation Ratio', - 'NIH Percentile', + 'Publish Date', ], query: GET_CASE_DETAIL_PUBLICATIONS_TAB, apiVariable: 'publicationOverViewByProject', diff --git a/src/components/Footer/FooterView.js b/src/components/Footer/FooterView.js index b70e803b..c21bdf40 100644 --- a/src/components/Footer/FooterView.js +++ b/src/components/Footer/FooterView.js @@ -33,6 +33,9 @@ const INSFooter = () => {