Skip to content

Commit

Permalink
fix oauth2 user sessions table columns
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha committed Dec 29, 2023
1 parent 282287c commit 810d5b5
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions OryAdmin/Components/Pages/Identities/Users/View.razor
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,7 @@ else
<thead>
<tr>
<td>Remember</td>
<td>Expires at</td>
<td>Grant scope</td>
<td>Session</td>
<td>Consent request</td>
<td>Handled at</td>
<td>Expires at</td>
</tr>
Expand All @@ -168,11 +165,6 @@ else
<tr>
<td>@(session.Remember ? "Yes" : "No")</td>
<td>@(session.GrantScope == null ? "-" : string.Join(", ", session.GrantScope))</td>
<td>@session.Session.ToJson()</td>
<td>@session.ConsentRequest.ToJson()</td>
<td>
@(session.GrantAccessTokenAudience == null ? "-" : string.Join(", ", session.GrantAccessTokenAudience))
</td>
<td>@session.HandledAt ?? "-"</td>
<td>@session.ExpiresAt</td>
</tr>
Expand Down

0 comments on commit 810d5b5

Please sign in to comment.