react-mutation-mapper 0.8.108 → 0.8.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +13 -13
- package/package.json +6 -6
package/dist/index.es.js
CHANGED
|
@@ -571,7 +571,9 @@ var RevueTooltipContent = function (props) {
|
|
|
571
571
|
React__default.createElement("li", null,
|
|
572
572
|
"Revised Protein Effect by", " ",
|
|
573
573
|
React__default.createElement("a", { href: "https://cancerrevue.org", target: "_blank", rel: "noopener noreferrer" }, "reVUE"), " (",
|
|
574
|
-
|
|
574
|
+
props.vue.references.map(function (reference, index) { return (React__default.createElement("span", { key: index },
|
|
575
|
+
React__default.createElement("a", { href: "https://pubmed.ncbi.nlm.nih.gov/" + reference.pubmedId + "/", rel: "noopener noreferrer", target: "_blank" }, reference.referenceText),
|
|
576
|
+
index < props.vue.references.length - 1 && ';')); }), "): ",
|
|
575
577
|
React__default.createElement("strong", null, props.vue.revisedProteinEffect))));
|
|
576
578
|
};
|
|
577
579
|
function sortValue$5(vue) {
|