mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
PublicDashboards: Add last seen to email sharing users list (#77660)
This commit is contained in:
committed by
GitHub
parent
3cb92e3460
commit
5fc3ab801b
@@ -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>
|
||||
|
||||
@@ -37,6 +37,7 @@ export interface SessionDashboard {
|
||||
export interface SessionUser {
|
||||
email: string;
|
||||
firstSeenAtAge: string;
|
||||
lastSeenAtAge: string;
|
||||
totalDashboards: number;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user