From 2b61bddf7bcb02d86da11302720e6582c2ae4d24 Mon Sep 17 00:00:00 2001 From: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Date: Tue, 30 Dec 2025 08:57:49 -0500 Subject: [PATCH] feat: add completed onboarding column to organization members table (#25582) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Udit Takkar <53316345+Udit-takkar@users.noreply.github.com> Co-authored-by: Syed Ali Shahbaz <52925846+alishaz-polymath@users.noreply.github.com> --- .../components/UserTable/UserListTable.tsx | 17 +++++++++++++++++ apps/web/public/static/locales/en/common.json | 1 + 2 files changed, 18 insertions(+) diff --git a/apps/web/modules/users/components/UserTable/UserListTable.tsx b/apps/web/modules/users/components/UserTable/UserListTable.tsx index 08365e2247..c70b2c6e25 100644 --- a/apps/web/modules/users/components/UserTable/UserListTable.tsx +++ b/apps/web/modules/users/components/UserTable/UserListTable.tsx @@ -79,6 +79,7 @@ const initalColumnVisibility = { teams: true, createdAt: false, updatedAt: false, + completedOnboarding: false, twoFactorEnabled: false, actions: true, }; @@ -418,6 +419,22 @@ function UserListTableContent({ }, cell: ({ row }) =>
{row.original.updatedAt || ""}
, }, + { + id: "completedOnboarding", + accessorKey: "completedOnboarding", + header: t("completed_onboarding"), + enableSorting: false, + enableColumnFilter: false, + size: 80, + cell: ({ row }) => { + const { completedOnboarding } = row.original; + return ( + + {completedOnboarding ? t("yes") : t("no")} + + ); + }, + }, { id: "twoFactorEnabled", accessorKey: "twoFactorEnabled", diff --git a/apps/web/public/static/locales/en/common.json b/apps/web/public/static/locales/en/common.json index d3a9eb8238..b38ffb7ae5 100644 --- a/apps/web/public/static/locales/en/common.json +++ b/apps/web/public/static/locales/en/common.json @@ -3494,6 +3494,7 @@ "last_active": "Last Active", "member_since": "Member Since", "last_updated": "Last Updated", + "completed_onboarding": "Completed Onboarding", "salesforce_on_cancel_write_to_event": "On cancelled booking, write to event record instead of deleting event", "salesforce_on_every_cancellation": "On every cancellation", "report_issue": "Report issue",