Skip to content

Commit

Permalink
Merge pull request #239 from srikanth716/bugfix#199
Browse files Browse the repository at this point in the history
bugfix#199
  • Loading branch information
gsasikumar authored Nov 11, 2022
2 parents e825d5d + 6a0ebcd commit 67e5b47
Showing 1 changed file with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions components/VcDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,27 @@ export const VcDetails: React.FC<VcDetailsProps> = (props) => {
/>

<Column style={Theme.Styles.labelPartContainer}>
<Column fill>
<Text
weight="bold"
size="smaller"
align="left"
color={Theme.Colors.DetailsLabel}>
{t('fullName')}
</Text>
<Text
weight="semibold"
size="smaller"
align="left"
color={Theme.Colors.Details}>
{getLocalizedField(
props.vc?.verifiableCredential.credentialSubject.fullName
)}
</Text>
</Column>

{uin ? (
<Column fill>
<Column fill style={Theme.Styles.labelPart}>
<Text
weight="bold"
size="smaller"
Expand All @@ -82,7 +101,7 @@ export const VcDetails: React.FC<VcDetailsProps> = (props) => {
) : null}

{vid ? (
<Column fill>
<Column fill style={Theme.Styles.labelPart}>
<Text
weight="bold"
size="smaller"
Expand Down

0 comments on commit 67e5b47

Please sign in to comment.