File tree Expand file tree Collapse file tree
src/components/MetaContainer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ function Table({
235235 designers :
236236 info . people !== undefined && info . people . length > 0
237237 ? info . people . filter ( ( p ) => p . type === "designer" )
238- : undefined ,
238+ : [ ] ,
239239 description : gameEngine . description ( ) ,
240240 starred :
241241 globalMe !== null &&
@@ -370,14 +370,14 @@ function Table({
370370 } ) ,
371371 columnHelper . accessor (
372372 ( row ) =>
373- row . designers !== undefined
373+ row . designers . length > 0
374374 ? row . designers . map ( ( d ) => d . name ) . join ( " " )
375375 : "" ,
376376 {
377377 header : "Designers" ,
378378 id : "designers" ,
379379 cell : ( props ) =>
380- props . row . original . designers === undefined
380+ props . row . original . designers . length === 0
381381 ? ""
382382 : props . row . original . designers
383383 . map ( ( { name, urls } , ind ) =>
You can’t perform that action at this time.
0 commit comments