Browse Source

fix: better logic for condition

pull/8371/head
mertmit 2 months ago
parent
commit
9b4b56229d
  1. 2
      packages/nc-gui/utils/dataUtils.ts

2
packages/nc-gui/utils/dataUtils.ts

@ -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('___')
}

Loading…
Cancel
Save