Skip to content

Commit

Permalink
feat: default to cell value in cellLabelValue
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesikot committed Dec 27, 2024
1 parent 092445e commit 2da7c04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export const SelectCell = (props: SelectProps) => {

return selectedOption
? selectedOption[TableSelectColumnOptionKeys.LABEL]
: "";
: value;
}, [value, options]);

if (isEditable && isCellEditable && isCellEditMode) {
Expand Down

0 comments on commit 2da7c04

Please sign in to comment.