fix: better logic for condition

This commit is contained in:
mertmit
2024-04-30 17:12:27 +00:00
parent 80647a598c
commit 9b4b56229d

View File

@@ -8,7 +8,7 @@ export const extractPkFromRow = (row: Record<string, any>, columns: ColumnType[]
const pkColumns = columns.filter((c) => c.pk)
if (!pkColumns.some((c) => row?.[c.title as string] !== null && row?.[c.title as string] !== undefined)) return null
if (pkColumns.every((c) => row?.[c.title as string] === null && row?.[c.title as string] === undefined)) return null
return pkColumns.map((c) => row?.[c.title as string]).join('___')
}