mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-04 09:46:40 +00:00
add sticky actions col to org idp table
This commit is contained in:
@@ -27,6 +27,8 @@ export function IdpDataTable<TData, TValue>({
|
|||||||
searchColumn="name"
|
searchColumn="name"
|
||||||
addButtonText={t("idpAdd")}
|
addButtonText={t("idpAdd")}
|
||||||
onAdd={onAdd}
|
onAdd={onAdd}
|
||||||
|
enableColumnVisibility={true}
|
||||||
|
stickyRightColumn="actions"
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -118,6 +118,7 @@ export default function IdpTable({ idps, orgId }: Props) {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "actions",
|
id: "actions",
|
||||||
|
enableHiding: false,
|
||||||
header: () => <span className="p-3">{t("actions")}</span>,
|
header: () => <span className="p-3">{t("actions")}</span>,
|
||||||
cell: ({ row }) => {
|
cell: ({ row }) => {
|
||||||
const siteRow = row.original;
|
const siteRow = row.original;
|
||||||
|
|||||||
Reference in New Issue
Block a user