Skip to content

Commit

Permalink
feat: added version column (#2543)
Browse files Browse the repository at this point in the history
  • Loading branch information
chesterkmr committed Jul 22, 2024
1 parent c550138 commit f560ee6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ export const workflowDefinitionsTableColumns = [
),
header: () => 'Config',
}),
columnHelper.accessor('version', {
cell: info => info.getValue<number>(),
header: () => 'Version',
}),
columnHelper.accessor('id', {
cell: info => (
<Link to={`/workflow-definitions/${info.row.original.id}`}>
Expand Down

0 comments on commit f560ee6

Please sign in to comment.