-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add doi share link and update styles #1539
Conversation
@@ -104,11 +118,12 @@ export default defineComponent({ | |||
} | |||
return ''; | |||
}); | |||
const doiLink = computed(() => (meta.value?.doi ? `https://doi.org/:${meta.value?.doi}` : '')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extra :
snuck in. otherwise the output looks great.
const doiLink = computed(() => (meta.value?.doi ? `https://doi.org/:${meta.value?.doi}` : '')); | |
const doiLink = computed(() => (meta.value?.doi ? `https://doi.org/${meta.value?.doi}` : '')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in fecc64f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One small question about an html attribute, but otherwise this looks good!
Co-authored-by: Mike VanDenburgh <37340715+mvandenburgh@users.noreply.github.com>
🚀 PR was released in |
closes #712
Adds DOI link to share modal: