fix(results): crash when accessor contains a dot
This commit is contained in:
@ -120,9 +120,14 @@ export const ResultsTable = ({
|
|||||||
</HStack>
|
</HStack>
|
||||||
),
|
),
|
||||||
cell: (info) => {
|
cell: (info) => {
|
||||||
const value = info.getValue() as CellValueType | undefined
|
try {
|
||||||
|
const value = info?.getValue() as CellValueType | undefined
|
||||||
if (!value) return
|
if (!value) return
|
||||||
return value.element || value.plainText || ''
|
return value.element || value.plainText || ''
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
},
|
},
|
||||||
})),
|
})),
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user