Skip to content

Commit

Permalink
Sprint 22 23 24 changes bug fix (#1357)
Browse files Browse the repository at this point in the history
* [INJIMOB-878]: replace all references of VC to VCMeta

Signed-off-by: Alka Prasad <[email protected]>

* [INJIMOB-878]: remove credential logging

Signed-off-by: Alka Prasad <[email protected]>

* [INJIMOB-878]: fix status display on VC details page

Signed-off-by: Alka Prasad <[email protected]>

---------

Signed-off-by: Alka Prasad <[email protected]>
  • Loading branch information
Alka1703 authored Apr 2, 2024
1 parent fd79176 commit 2124021
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion components/VC/common/VCUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ export const getFieldValue = (
}
switch (field) {
case 'status':
return <VCVerification wellknown={wellknown} isVerified={props.vc} />;
return (
<VCVerification
wellknown={wellknown}
isVerified={props.credential !== null}
/>
);
case 'idType':
return getIDType(verifiableCredential);
case 'credentialRegistry':
Expand Down

0 comments on commit 2124021

Please sign in to comment.