Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 5c82066

Browse files
committed
fix oauth2 user sessions table columns
1 parent 282287c commit 5c82066

File tree

1 file changed

+1
-9
lines changed
  • OryAdmin/Components/Pages/Identities/Users

1 file changed

+1
-9
lines changed

OryAdmin/Components/Pages/Identities/Users/View.razor

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,7 @@ else
154154
<thead>
155155
<tr>
156156
<td>Remember</td>
157-
<td>Expires at</td>
158157
<td>Grant scope</td>
159-
<td>Session</td>
160-
<td>Consent request</td>
161158
<td>Handled at</td>
162159
<td>Expires at</td>
163160
</tr>
@@ -168,12 +165,7 @@ else
168165
<tr>
169166
<td>@(session.Remember ? "Yes" : "No")</td>
170167
<td>@(session.GrantScope == null ? "-" : string.Join(", ", session.GrantScope))</td>
171-
<td>@session.Session.ToJson()</td>
172-
<td>@session.ConsentRequest.ToJson()</td>
173-
<td>
174-
@(session.GrantAccessTokenAudience == null ? "-" : string.Join(", ", session.GrantAccessTokenAudience))
175-
</td>
176-
<td>@session.HandledAt ?? "-"</td>
168+
<td>@session.HandledAt</td>
177169
<td>@session.ExpiresAt</td>
178170
</tr>
179171
}

0 commit comments

Comments
 (0)