From ae631e63ee9a5744d796beccb7b24d598774b46d Mon Sep 17 00:00:00 2001 From: Chandan-walker Date: Mon, 16 Feb 2026 12:19:31 +0530 Subject: [PATCH] added id, block name and last login column in user table --- .../src/app/users/user/user.component.html | 37 +++++++++++++++++++ .../src/app/users/user/user.component.ts | 10 ++++- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/apps/proxy/src/app/users/user/user.component.html b/apps/proxy/src/app/users/user/user.component.html index 2aaec89d..3de769b6 100644 --- a/apps/proxy/src/app/users/user/user.component.html +++ b/apps/proxy/src/app/users/user/user.component.html @@ -124,6 +124,43 @@ + + + User ID + + + {{ element?.id }} + + + + + + + + Block Name + + + {{ element?.feature_configuration?.name }} + + + + + + + Last Login + + + + {{ element?.last_login_at | date: 'd MMM y' }} + + ({{ element?.last_login_at | date: 'mediumTime' }}) + + + + Created At diff --git a/apps/proxy/src/app/users/user/user.component.ts b/apps/proxy/src/app/users/user/user.component.ts index f0d3191a..f080a95d 100644 --- a/apps/proxy/src/app/users/user/user.component.ts +++ b/apps/proxy/src/app/users/user/user.component.ts @@ -34,7 +34,15 @@ export class UserComponent extends BaseComponent implements OnDestroy, OnInit { /** Store User data */ public users$: Observable> = this.componentStore.users$; /** Store display column */ - public displayedColumns: string[] = ['name', 'email', 'phone_number', 'created_at']; + public displayedColumns: string[] = [ + 'name', + 'email', + 'phone_number', + 'user_id', + 'block_name', + 'last_login', + 'created_at', + ]; /** Store params for fetching feature data */ public params: any = {}; /** Store default selected date range */