Skip to content
Snippets Groups Projects

fix(manuscript-manager): add proper signature name

Merged Sebastian Mihalache requested to merge hin-838-eic-name-missing into develop
2 files
+ 13
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -72,7 +72,9 @@ class User {
async getEiCName() {
const editorsInChief = await this.getEditorsInChief()
const { firstName, lastName } = editorsInChief[0]
const firstName = get(editorsInChief, '0.firstName', 'Editor')
const lastName = get(editorsInChief, '0.lastName', 'in Chief')
return `${firstName} ${lastName}`
}
}