Skip to content

Commit

Permalink
Merge branch 'develop' into feature/PELAGOS-5394-Make-login-pages-loo…
Browse files Browse the repository at this point in the history
…k-more-uniform
  • Loading branch information
fightingtexasaggie committed Jan 23, 2025
2 parents 35615bd + 7fd5ce1 commit 6df97f3
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 218 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "^7.26.3",
"@fortawesome/fontawesome-free": "^5.11.1",
"@hotwired/stimulus": "^3.0.0",
"@symfony/stimulus-bridge": "^3.0.0",
"@symfony/stimulus-bridge": "^3.2.3",
"@symfony/webpack-encore": "^4.6.1",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.1.2",
"autoprefixer": "^9.7.4",
"core-js": "^3.0.0",
"core-js": "^3.40.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-alias": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion templates/Admin/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<li><a href="{{ path("app_ui_reportdatasetsubmission_makecsv", {"udi": "YOUR_UDI_HERE"}) }}">Dataset Submission Report - CSV</a></li>
<li><a href="{{ path('pelagos_app_ui_reportresearchgroup_detailreport') }}">Research Group Detail Report (JSON)</a></li>
<li><a href="{{ path('pelagos_api_grp_datasets_people_report') }}">GRP Datasets and People Report (CSV)</a></li>
<li><a href="{{ path('pelagos_api_grp_datasets_keywords_report') }}">GRP Datasets and Keywords Report (CSV)</a></li>
{# <li><a href="{{ path('pelagos_api_grp_datasets_keywords_report') }}">GRP Datasets and Keywords Report (CSV)</a></li> #}
</ul>
</li>
</ul>
Expand Down
4 changes: 3 additions & 1 deletion templates/DatasetMonitoring/v2/researchGroups.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@
cssClass: 'dsmonitoringcols',
cellTemplate: function(container, options) {
const url = `https://doi.org/${options.value}`;
return $('<a>', { href: url, target: '_blank', class: 'pagelink' }).text(options.displayValue);
if (!['Identified', 'None'].includes(options.data.status)) {
return doi = $('<a>', { href: url, target: '_blank', class: 'pagelink' }).text(options.displayValue);
}
},
},{
dataField: 'title',
Expand Down
Loading

0 comments on commit 6df97f3

Please sign in to comment.