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 5c82066
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 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,12 +165,7 @@ 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.HandledAt</td>
<td>@session.ExpiresAt</td>
</tr>
}
Expand Down

0 comments on commit 5c82066

Please sign in to comment.