@mjhls/mjh-framework 1.0.979-ris-update-v1 → 1.0.979-ris-update-v2
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/cjs/View.js +2 -0
- package/dist/esm/View.js +2 -0
- package/package.json +1 -1
package/dist/cjs/View.js
CHANGED
|
@@ -920,6 +920,7 @@ var Article = React__default['default'].memo(React.forwardRef(function (props, r
|
|
|
920
920
|
_props$showAuthorDeta = props.showAuthorDetails,
|
|
921
921
|
showAuthorDetails = _props$showAuthorDeta === undefined ? false : _props$showAuthorDeta,
|
|
922
922
|
audioAutoplay = props.audioAutoplay,
|
|
923
|
+
article = props.article,
|
|
923
924
|
_props$article = props.article,
|
|
924
925
|
title = _props$article.title,
|
|
925
926
|
_props$article$passwo = _props$article.passwordLock,
|
|
@@ -1127,6 +1128,7 @@ var Article = React__default['default'].memo(React.forwardRef(function (props, r
|
|
|
1127
1128
|
fileContent += 'JO - ' + issue.abbreviatedJournal + '\n'; //Journal Name - JO
|
|
1128
1129
|
}
|
|
1129
1130
|
if (article.abstract) fileContent += 'AB - ' + getAbstract() + '\n'; //Abstract - AB
|
|
1131
|
+
if (article.abstract) fileContent += 'N2 - ' + getAbstract() + '\n'; //Abstract - N2
|
|
1130
1132
|
if (issue.issueNumber) fileContent += 'IS - ' + issue.issueNumber + '\n'; //Issue Number - IS
|
|
1131
1133
|
fileContent += 'PB - MJH Life Sciences\n'; //Publisher - PB
|
|
1132
1134
|
if (issue.year) fileContent += 'PY - ' + issue.year + '\n'; //Published Year - PY
|
package/dist/esm/View.js
CHANGED
|
@@ -910,6 +910,7 @@ var Article = React__default.memo(forwardRef(function (props, ref) {
|
|
|
910
910
|
_props$showAuthorDeta = props.showAuthorDetails,
|
|
911
911
|
showAuthorDetails = _props$showAuthorDeta === undefined ? false : _props$showAuthorDeta,
|
|
912
912
|
audioAutoplay = props.audioAutoplay,
|
|
913
|
+
article = props.article,
|
|
913
914
|
_props$article = props.article,
|
|
914
915
|
title = _props$article.title,
|
|
915
916
|
_props$article$passwo = _props$article.passwordLock,
|
|
@@ -1117,6 +1118,7 @@ var Article = React__default.memo(forwardRef(function (props, ref) {
|
|
|
1117
1118
|
fileContent += 'JO - ' + issue.abbreviatedJournal + '\n'; //Journal Name - JO
|
|
1118
1119
|
}
|
|
1119
1120
|
if (article.abstract) fileContent += 'AB - ' + getAbstract() + '\n'; //Abstract - AB
|
|
1121
|
+
if (article.abstract) fileContent += 'N2 - ' + getAbstract() + '\n'; //Abstract - N2
|
|
1120
1122
|
if (issue.issueNumber) fileContent += 'IS - ' + issue.issueNumber + '\n'; //Issue Number - IS
|
|
1121
1123
|
fileContent += 'PB - MJH Life Sciences\n'; //Publisher - PB
|
|
1122
1124
|
if (issue.year) fileContent += 'PY - ' + issue.year + '\n'; //Published Year - PY
|