Skip to content

Commit

Permalink
Fixing the Type issue for Custom table that effecting the FE Bundle (#…
Browse files Browse the repository at this point in the history
…419)

* Fixing the Type issue for Custom table that effecting the FE Bundle

* Adding the feature branch to github actions
  • Loading branch information
pushyamig committed Mar 26, 2024
1 parent d8b2e6a commit c7c79b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ccm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
branches:
- main
- '[0-9][0-9][0-9][0-9].[0-9][0-9].*' # 2021.01.x
- '2024-03-01-dep-update'
tags:
- '[0-9][0-9][0-9][0-9].[0-9][0-9].[0-9][0-9]' # 2021.01.01

Expand Down
3 changes: 1 addition & 2 deletions ccm_web/client/src/components/CustomTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,9 @@ function CustomTable<T extends TableEntity> (props: TableProps<T>): JSX.Element
return (
<TableRow hover key={row.rowNumber}>
{columns.map((column) => {
const value = row[column.id]
return (
<TableCell key={String(column.id)} align={column.align}>
{value}
{String(row[column.id])}
</TableCell>
)
})}
Expand Down

0 comments on commit c7c79b1

Please sign in to comment.