PublicDashboards: Add last seen to email sharing users list (#77660)

This commit is contained in:
Ezequiel Victorero
2023-11-08 11:11:02 -03:00
committed by GitHub
parent 3cb92e3460
commit 5fc3ab801b
2 changed files with 3 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ export const UserListPublicDashboardPage = () => {
<Icon name="question-circle" />
</Tooltip>
</th>
<th>Last active</th>
<th>Origin</th>
<th>Role</th>
<th></th>
@@ -40,6 +41,7 @@ export const UserListPublicDashboardPage = () => {
</span>
</td>
<td className="max-width-10">{user.firstSeenAtAge}</td>
<td className="max-width-10">{user.lastSeenAtAge}</td>
<td className="max-width-10">
<HorizontalGroup spacing="sm">
<span>{user.totalDashboards} dashboard(s)</span>

View File

@@ -37,6 +37,7 @@ export interface SessionDashboard {
export interface SessionUser {
email: string;
firstSeenAtAge: string;
lastSeenAtAge: string;
totalDashboards: number;
}