Skip to content

Commit

Permalink
Merge pull request #48609 from nkdengineer/fix/48540
Browse files Browse the repository at this point in the history
  • Loading branch information
mountiny authored Sep 5, 2024
2 parents a6e6ae6 + d439bed commit b000dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ImportColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ function ImportColumn({column, columnName, columnRoles, columnIndex}: ImportColu
text: item.text,
value: item.value,
description: item.description ?? (item.isRequired ? translate('common.required') : undefined),
isSelected: spreadsheet?.columns[columnIndex] === item.value,
isSelected: spreadsheet?.columns?.[columnIndex] === item.value,
}));

const columnValuesString = column.slice(containsHeader ? 1 : 0).join(', ');
Expand Down

0 comments on commit b000dcd

Please sign in to comment.