From db43cf1b302ad411b6f94b1f69a7b2c0728696c0 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Tue, 23 Dec 2025 14:58:58 -0500 Subject: [PATCH] add sticky actions col to org idp table --- src/components/private/OrgIdpDataTable.tsx | 2 ++ src/components/private/OrgIdpTable.tsx | 1 + 2 files changed, 3 insertions(+) diff --git a/src/components/private/OrgIdpDataTable.tsx b/src/components/private/OrgIdpDataTable.tsx index a7dc1850..9a45f49e 100644 --- a/src/components/private/OrgIdpDataTable.tsx +++ b/src/components/private/OrgIdpDataTable.tsx @@ -27,6 +27,8 @@ export function IdpDataTable({ searchColumn="name" addButtonText={t("idpAdd")} onAdd={onAdd} + enableColumnVisibility={true} + stickyRightColumn="actions" /> ); } diff --git a/src/components/private/OrgIdpTable.tsx b/src/components/private/OrgIdpTable.tsx index f5fdfe40..387fd3c7 100644 --- a/src/components/private/OrgIdpTable.tsx +++ b/src/components/private/OrgIdpTable.tsx @@ -118,6 +118,7 @@ export default function IdpTable({ idps, orgId }: Props) { }, { id: "actions", + enableHiding: false, header: () => {t("actions")}, cell: ({ row }) => { const siteRow = row.original;