Skip to content

Commit

Permalink
chore(app): reorder person responsible by (firstname, lastname)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Weber committed Mar 13, 2024
1 parent 68d8b34 commit 8025ff8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/ProposalMeta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,12 @@ export default function ProposalMeta({ proposalDetails }: ProposalMetaProps) {
proposalDetails.supervisedBy[0].responsible && (
<div className="text-base">
<div className="font-bold">Person Responsible</div>
<div>{proposalDetails.supervisedBy[0].responsible.name}</div>
<div>
{proposalDetails.supervisedBy[0].responsible.name
.split(' ')
.reverse()
.join(' ')}
</div>
</div>
)}

Expand Down

0 comments on commit 8025ff8

Please sign in to comment.