Skip to content

Commit

Permalink
add more info on dev
Browse files Browse the repository at this point in the history
  • Loading branch information
zefanjajobse committed Jan 17, 2025
1 parent 062b50e commit 90ea111
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Group/Group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ export function GroupRow(props: { group: IDevGroup }): React.ReactElement {
totalOwners: group?.totalOwners,
totalServers: group?.totalServers,
})}
{" - "}
{group.createdAt !== undefined
? t("date", { date: new Date(group.createdAt) })
: "-"}
</span>
</span>

Expand Down
1 change: 1 addition & 0 deletions src/api/ReturnTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,7 @@ export interface IDevGroups {
}

export interface IDevGroup {
createdAt: string;
groupName: string;
id: string;
totalAdmins: number;
Expand Down

0 comments on commit 90ea111

Please sign in to comment.