Skip to content

Commit

Permalink
Merge pull request #128 from joshtyf/feature/add-service-request-id-t…
Browse files Browse the repository at this point in the history
…o-tables

Add service request ids to table
  • Loading branch information
joshtyf authored Apr 28, 2024
2 parents c95d811 + b4e2949 commit 6e13dac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ export const orgServiceRequestColumns: ColumnDef<ServiceRequest>[] = [
return <ServiceRequestStatusBadge status={status} />
},
},
{
accessorKey: "id",
header: "Service Request ID",
},
{
id: "service_name",
header: "Service Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ export const columns: ColumnDef<ServiceRequest>[] = [
return <ServiceRequestStatusBadge status={status} />
},
},
{
accessorKey: "id",
header: "Service Request ID",
},
{
id: "service_name",
header: "Service Name",
Expand Down

0 comments on commit 6e13dac

Please sign in to comment.