Skip to content

Commit

Permalink
format GrantAccessTokenAudience
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha committed Jan 2, 2024
1 parent cadb0cd commit e7afb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OryAdmin/Components/Pages/Identities/Users/View.razor
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ else
}
}
<td>@(session.GrantScope == null ? "-" : string.Join(", ", session.GrantScope))</td>
<td>@session.GrantAccessTokenAudience</td>
<td>@(session.GrantAccessTokenAudience == null ? "-" : string.Join(", ", session.GrantAccessTokenAudience))</td>
<td>@session.HandledAt</td>
<td>@(session.ExpiresAt != null ? session.ExpiresAt?.RefreshToken : "-")</td>
</tr>
Expand Down

0 comments on commit e7afb98

Please sign in to comment.