fix alerter table

This commit is contained in:
mbecker20
2024-06-22 01:29:31 -07:00
parent 696ebdb26f
commit 968a882012

View File

@@ -23,11 +23,17 @@ export const AlerterTable = ({
),
},
{
accessorKey: "info.alerter_type",
accessorKey: "info.endpoint_type",
header: ({ column }) => (
<SortableHeader column={column} title="Type" />
),
},
{
accessorKey: "info.enabled",
header: ({ column }) => (
<SortableHeader column={column} title="Enabled" />
),
},
{
header: "Tags",
cell: ({ row }) => <TableTags tag_ids={row.original.tags} />,