Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed
- Use `name` field for contributors on preprint-detail page
- Prevent banner from loading on `preprint-detail` page if preprint is undefined
- Show DOI url if it exists

## Changed
- Use Ember-CSS-Modules
Expand Down
2 changes: 1 addition & 1 deletion app/templates/preprints/provider/preprint-detail.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@

<section class="p-t-xs">
<h4 class="p-v-md f-w-md"><strong>{{t "content.preprintDOI"}}</strong></h4>
{{#if preprint.isPublished}}
{{#if preprint.preprintDoiUrl}}
{{#if preprint.preprintDoiCreated}}
<a href={{preprint.preprintDoiUrl}}>{{extract-doi preprint.preprintDoiUrl}}</a>
{{else}}
Expand Down