Skip to content

Commit

Permalink
fixing compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
mirrormystic committed Oct 14, 2024
1 parent e5ce5ad commit d5d85e6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions keep-ui/app/rules/CorrelationTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,11 @@ export const CorrelationTable = ({ rules }: CorrelationTableProps) => {
context.getValue()
),
}),
columnHelper.accessor("delete_rule", {
columnHelper.display({
id: 'delete',
header: "",
cell: (context) => (<DeleteRuleCell ruleId={context.row.original.id} />),
enableSorting: false, // Disable sorting for the Delete column
enableSorting: false,
}),
],
[]
Expand Down Expand Up @@ -306,4 +307,4 @@ export const CorrelationTable = ({ rules }: CorrelationTableProps) => {
/>
</div>
);
};
};

0 comments on commit d5d85e6

Please sign in to comment.