Skip to content

Commit 6f5e0b8

Browse files
authored
Merge pull request #981 from amitamrutiya/add-condition
fix: e.undefined issue in teams table
2 parents 5954006 + 4c03cc1 commit 6f5e0b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/custom/TeamTable/TeamTableConfiguration.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,9 @@ export default function TeamTableConfiguration({
144144
filter: false,
145145
sort: true,
146146
searchable: false,
147-
customBodyRender: (value: string) => <ConditionalTooltip value={value} maxLength={30} />
147+
customBodyRender: (value: string) => (
148+
<ConditionalTooltip value={value ?? ''} maxLength={30} />
149+
)
148150
}
149151
},
150152
{

0 commit comments

Comments
 (0)