Skip to content

Commit

Permalink
feat(ui): show mapping priority
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren committed Mar 6, 2024
1 parent 143de3b commit 4857927
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions keep-ui/app/mapping/rules-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ export default function RulesTable({ mappings }: { mappings: MappingRule[] }) {
header: "#",
cell: (context) => context.row.original.id,
}),
columnHelper.display({
id: "priority",
header: "Priority",
cell: (context) => context.row.original.priority,
}),
columnHelper.display({
id: "name",
header: "Name",
Expand Down

0 comments on commit 4857927

Please sign in to comment.