diff --git a/ui/src/common/components/CitationSummaryTable/CitationSummaryTable.jsx b/ui/src/common/components/CitationSummaryTable/CitationSummaryTable.jsx
index b1dfa4287b..c661c602af 100644
--- a/ui/src/common/components/CitationSummaryTable/CitationSummaryTable.jsx
+++ b/ui/src/common/components/CitationSummaryTable/CitationSummaryTable.jsx
@@ -1,6 +1,7 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Map } from 'immutable';
+import { Link } from 'react-router-dom';
import './CitationSummaryTable.scss';
import ExternalLink from '../ExternalLink';
@@ -9,7 +10,7 @@ import LoadingOrChildren from '../LoadingOrChildren';
import ErrorAlertOrChildren from '../ErrorAlertOrChildren';
import { ErrorPropType } from '../../propTypes';
-const CITABLE_HELP_MESSAGE = (
+const PUBLISHED_HELP_MESSAGE = (
Published papers are believed to have undergone rigorous peer review.{' '}
@@ -18,6 +19,13 @@ const CITABLE_HELP_MESSAGE = (
);
+const H_INDEX_HELP_MESSAGE = (
+
+ The h-index is defined as the number of papers with citation number higher
+ or equal to h. Learn more
+
+);
+
class CitationSummaryTable extends Component {
render() {
const {
@@ -47,7 +55,7 @@ class CitationSummaryTable extends Component {
@@ -74,7 +82,12 @@ class CitationSummaryTable extends Component {