Skip to content

Commit

Permalink
Fix orcid linter issues
Browse files Browse the repository at this point in the history
Co-authored-by: Abel Soares Siqueira <[email protected]>
  • Loading branch information
c-martinez and abelsiqueira committed Apr 12, 2023
1 parent eb88e13 commit d774bd4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/components/AuthorCardEditing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,15 @@ export default defineComponent({
config.props = this
return config
})
interface OrcidAuthor {
'given-names': string
'family-names': string
email: string
'institution-name': string[]
}
interface OrcidResponse {
'expanded-result': OrcidAuthor[]
}
void axios.get(orcidEndpoint,
{
data: {},
Expand Down

0 comments on commit d774bd4

Please sign in to comment.