Skip to content

Commit

Permalink
#56
Browse files Browse the repository at this point in the history
  • Loading branch information
m8nli9ht committed Sep 30, 2023
1 parent 25821ca commit 8cab9eb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/document.description.contributor.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,14 @@ class Contributor extends Component {
render() {

return(

<Chip
avatar={<Avatar>{this.props.contributor.type.charAt(0).toUpperCase()}</Avatar>}
label={this.props.contributor.firstName + " " + this.props.contributor.lastName}
label={this.props.contributor.type + " : " + this.props.contributor.firstName + " " + this.props.contributor.lastName}
onDelete={this.handleDelete}
color="primary"
variant="outlined"
/>

);
}
}
Expand Down

0 comments on commit 8cab9eb

Please sign in to comment.