diff --git a/public/app/features/admin/UserListPublicDashboardPage/UserListPublicDashboardPage.tsx b/public/app/features/admin/UserListPublicDashboardPage/UserListPublicDashboardPage.tsx index cb79aec1373..8bf14e8f4ab 100644 --- a/public/app/features/admin/UserListPublicDashboardPage/UserListPublicDashboardPage.tsx +++ b/public/app/features/admin/UserListPublicDashboardPage/UserListPublicDashboardPage.tsx @@ -26,6 +26,7 @@ export const UserListPublicDashboardPage = () => { + Last active Origin Role @@ -40,6 +41,7 @@ export const UserListPublicDashboardPage = () => { {user.firstSeenAtAge} + {user.lastSeenAtAge} {user.totalDashboards} dashboard(s) diff --git a/public/app/features/dashboard/components/ShareModal/SharePublicDashboard/SharePublicDashboardUtils.ts b/public/app/features/dashboard/components/ShareModal/SharePublicDashboard/SharePublicDashboardUtils.ts index cca26eb7724..3ab5264791b 100644 --- a/public/app/features/dashboard/components/ShareModal/SharePublicDashboard/SharePublicDashboardUtils.ts +++ b/public/app/features/dashboard/components/ShareModal/SharePublicDashboard/SharePublicDashboardUtils.ts @@ -37,6 +37,7 @@ export interface SessionDashboard { export interface SessionUser { email: string; firstSeenAtAge: string; + lastSeenAtAge: string; totalDashboards: number; }