We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80e46c9 commit 5ed3693Copy full SHA for 5ed3693
src/tools/jwt-parser/jwt-parser.service.ts
@@ -19,7 +19,7 @@ function decodeJwt({ jwt }: { jwt: string }) {
19
20
function parseClaims({ claim, value }: { claim: string; value: unknown }) {
21
const claimDescription = CLAIM_DESCRIPTIONS[claim];
22
- const formattedValue = _.isPlainObject(value) ? JSON.stringify(value, null, 3) : _.toString(value);
+ const formattedValue = _.isPlainObject(value) || _.isArray(value) ? JSON.stringify(value, null, 3) : _.toString(value);
23
const friendlyValue = getFriendlyValue({ claim, value });
24
25
return {
0 commit comments