diff --git a/.github/workflows/ccm.yml b/.github/workflows/ccm.yml index de334f73..566ad5c2 100644 --- a/.github/workflows/ccm.yml +++ b/.github/workflows/ccm.yml @@ -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 diff --git a/ccm_web/client/src/components/CustomTable.tsx b/ccm_web/client/src/components/CustomTable.tsx index 0eb8486c..7ff9d32f 100644 --- a/ccm_web/client/src/components/CustomTable.tsx +++ b/ccm_web/client/src/components/CustomTable.tsx @@ -56,10 +56,9 @@ function CustomTable (props: TableProps): JSX.Element return ( {columns.map((column) => { - const value = row[column.id] return ( - {value} + {String(row[column.id])} ) })}