From c7c79b128c102a5bb297922b7daa737cb1a01803 Mon Sep 17 00:00:00 2001 From: Pushyami Gundala Date: Tue, 26 Mar 2024 10:22:32 -0400 Subject: [PATCH] Fixing the Type issue for Custom table that effecting the FE Bundle (#419) * Fixing the Type issue for Custom table that effecting the FE Bundle * Adding the feature branch to github actions --- .github/workflows/ccm.yml | 1 + ccm_web/client/src/components/CustomTable.tsx | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) 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])} ) })}